Indeterminate progressbar freezes when executing thread

Hi people,
Here is my problem.
In my GUI application, at some point the user needs to perform a time consuming application. I want to tell the user that the task is performing as it is supposed to by displaying an undeterminate progressbar. However, when the task is being executed, the progress bar just freezes, until the task is finished. This particular task involves the use of an external process (i.e. .exe file).
To remedy this, I launch a separate thread to perform my task, using SwingWorker, which, as I understand it, is a class designed for exactly this sort of thing. But it does not work! I spent a lot of time trying to get this problem solve but with no success. I also tried to put the the task in a "conventional" thread, but it always result in the same behavior. Here is some of my code, so someone can maybe see what am I doing wrong. In that code, the progressDialog displays a progressbar set at indeterminate(true);
Since I successfully used the code below to perform more simple tasks (like reading files and extracting lines from it), I am wondering if the use of an external .exe might be the problem here.
Cheers,
progressDialog = new StatusJDialog(new javax.swing.JFrame(), false);
progressDialog.setVisible(true);
task = new Task();
task.execute();
class Task extends SwingWorker<Void, Void> {
* Main task. Executed in background thread.
@Override
//None GUI stuff goes here.
public Void doInBackground()  {
       try {
                Thread.sleep(100);
                WindowManager.getDefault().invokeWhenUIReady(new Runnable() {
                    public void run() {
                        //Do time consuming task using external .exe here...
            } catch (InterruptedException ignore) {}
            return null;
         * Executed in event dispatch thread
@Override
public void done() {
    Toolkit.getDefaultToolkit().beep();
    progressDialog.setVisible(false);
}

It looks to me as if you're creating a SwingWorker background thread, but within that background thread, you're placing a long-running task on the EDT with this:
WindowManager.getDefault().invokeWhenUIReady(new Runnable() {
}So you're defeating the purpose of the SwingWorker.
You need to understand that code called in the doInBackground is called off of the EDT. I suggest that you get rid of the code to invoking the WindowManager and simply call your long running task in doInBackground.
i.e.,
public Void doInBackground()  {
       try {
                Thread.sleep(100);
                //    **** delete block below
                // WindowManager.getDefault().invokeWhenUIReady(new Runnable() {
                //     public void run() {
                //   **** delete block above
               //  ***  Do time consuming task using external .exe here...  *** 
            } catch (InterruptedException ignore) {}
            return null;
        }For others, a link to the WindowManager API is here: [http://bits.netbeans.org/dev/javadoc/org-openide-windows/org/openide/windows/WindowManager.html#invokeWhenUIReady%28java.lang.Runnable%29]

Similar Messages

  • Program freezes when a thread is run in another class.

    I have a class that extends Thread, and then I have a GUI that needs this thread.
    The thread class looks like this:
    public class ScoreboardCheck extends Thread
        private int clock;
        private boolean running;
        public ScoreboardCheck(int timeOnClock)
            super();
            this.clock = timeOnClock;
            running = false;
        public int getClock()
            return this.clock;
        public void toggleRunning()
            if (running == false)
                running = true;
            else
                running = false;
        public void run()
            while (Thread.currentThread() == this)
                if (running == true)
                    try
                        Thread.sleep(1000);
                        clock--;
                    catch(InterruptedException ie)
                        ie.printStackTrace();
    }This is suppose to update the clock on the GUI. I instantiate the thread in the GUI class, and call start on it. This works fine, but whenever I call run, it freezes up....Either way it never does anything.
    In the GUI class, how am I suppose to continously update the clock without this thing freezing up? I've tried implementing runnable in the GUI class, but that didn't work.

    Thanks for the replies, guys.
    When I call start it doesn't freeze. That's good. The only other problem I'm faced with, is updating the GUI probably every second. I've tried using a run method in the GUI which runs while true, but that froze things up....This is the point I'm stuck at. For now, I'm going to try what someone suggested: the Timer class. Is there another way of doing this though? Without the timer?

  • GUI freezes when new Thread object start()ed. Neat, brief code included :)

    The title says it all really.. I have the code below in a method startScan() that is called when a button is pressed. The thread executes fine, but the GUI locks up while the thread is executing. I don't really understand why, since a new thread is implicitly separate from the event dispatch thread.
    Must I use a SwingWorker to get things working? Would someone be kind enough to explain why, if this is the case?
    private void startScan() throws InterruptedException {
              final Runnable breadthFirstComparer = new Runnable() {
                   /** Sleep interval used when scan paused */
                   private int interval = 1000;
                    * Kills the current thread
                   public void stop() {
                        scanProgressLabel.setText("Scanning complete");
                        scanComplete = true;
                    * Sleeps the currently running thread if user has paused the scan,
                    * otherwise initiates comparison of the trees' next depth node sets
                   public void run() {
                        while (!scanComplete) {
                             while (scanPaused) {
                                  try {
                                       Thread.sleep(interval);
                                  } catch (Throwable exc) {
                                       Gecko.logException("Scanner thread could not be paused", exc);
                             compareTrees();
                        // Stop thread execution once scan is complete, and disable
                        // scanner-related buttons
                        toggleScanButton.setEnabled(false);
                        stop();
              scanner = new Thread(breadthFirstComparer)
                   public void start() {
                        scanProgressLabel.setText("Scanning in progress...");
                        breadthFirstComparer.run();
              scanButton.setEnabled(false);
              scanner.start();
         }Many thanks.

    it's getting really irritating that pretty much every thread out of the last
    20 I've made, you've criticised me for not posting an SSCCE. How do you think I feel. I'm donating my time to help you solve a problem, but you are not willing to spend 5-10 minutes to post a SSCCE so that we can fully understand what you have done and what the problem is.
    You don't have to post a SSCCE if you don't want to. Thats fine, I just won't answer your questions.
    what's the point me spending 30 minutes or more my end creating an
    SSCE, and you spending 10 minutes or more compiling, running and analyzing it your end?It should not take 30 minutes. If it does it just goes to prove that you don't really understand what you are attempting to do. And if you don't know what you are doing how do you expect us to guess what you are doing? One of the benefits of a SSCCE it to help you learn to develop problem solving skills by learning to simplfy the problem.
    Also, what if we can't figure out the problem based on your verbal description of the problem? If you post code it gives us the option of compiling and testing the code if we so desire. Without the code we give up and move on to the next question.
    but since the simple information that you've provided, and the chunk of code that Michal so kindly donated, are likely more than enough of an explanationThis time we were able to guess what the problem was, but that is not true in all cases. You seem to think that we are all miracle workers, that you can place a couple of lines of code in front of us and we can automatically tell whats wrong. Well, thats not true (at least for me). Many times I use my problem solving skills to solve the problem.
    I really should learn to scroll down and read all the posting before replying. es5f2000 pretty much said it all for me.
    Message was edited by:
    camickr

  • 1.5 sometimes freezes when running statements with F9

    I had noticed occasional freezes when hitting F9 with 1.5.0 production (ie three or four times last week), but after upgrading to 1.5.1 today (fresh install, migrated preferences) I have had four or five freezes when hitting F9. The UI completely freezes before showing the progress bar and there is no redraw, but it isn't using any CPU (and CPU is 95%+ idle), nothing appears on the console (started using <SQL Dev Install>\sqldeveloper\bin\sqldeveloper.exe) and if I leave it long enough the memory usage drops from 150K+ to back between 1K to 4K (sometimes quickly, sometimes not).
    I am on Win XP SP 2, using SQL Developer 1.5.1.54.40 with JDK 1.6.0_04.
    Initially, I upgraded to 1.5.1 from 1.5.0 as a Check for Updates, but tried the clean install (including renaming preferences directory) after the first freeze.
    Has anyone else seen this? Can someone from the SQL Dev team provide any help? Is there something else I can do to help narrow this down?
    theFurryOne

    Same thing in very similar circumstances - query with bind variables previously executed, freezes on execute without showing bind variable window. Using no appreciable CPU in this state, but after a minute or so memory usage started to increase in 4 or 8K chunks.
    I've also been seeing this intermittently in all builds of 1.5.
    About
    Oracle SQL Developer 1.5.0.53
    Version 1.5.0.53
    Build MAIN-53.38
    Copyright © 2005,2008 Oracle. All Rights Reserved.
    IDE Version: 11.1.1.0.22.49.35
    Product ID: oracle.sqldeveloper
    Product Version: 11.1.1.53.38
    Version
    Component     Version
    =========     =======
    CVS Version (External)     (CVSNT) 2.0.51d (client/server)
    Java(TM) Platform     1.5.0_06
    Oracle IDE     1.5.0.53.38
    Versioning Support     1.5.0.53.38
    Properties
    Name     Value
    ====     =====
    apple.laf.useScreenMenuBar     true
    awt.toolkit     sun.awt.windows.WToolkit
    class.load.environment     oracle.ide.boot.IdeClassLoadEnvironment
    class.load.log.level     CONFIG
    class.transfer     delegate
    com.apple.macos.smallTabs     true
    com.apple.mrj.application.apple.menu.about.name     "SQL_Developer"
    com.apple.mrj.application.growbox.intrudes     false
    file.encoding     Cp1252
    file.encoding.pkg     sun.io
    file.separator     \
    ice.browser.forcegc     false
    ice.pilots.html4.ignoreNonGenericFonts     true
    ice.pilots.html4.tileOptThreshold     0
    ide.AssertTracingDisabled     true
    ide.bootstrap.start     965447299307
    ide.build     MAIN-53.38
    ide.conf     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin\sqldeveloper.conf
    ide.config_pathname     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin\sqldeveloper.conf
    ide.debugbuild     false
    ide.devbuild     false
    ide.extension.search.path     sqldeveloper/extensions:jdev/extensions:ide/extensions
    ide.firstrun     false
    ide.java.minversion     1.5.0
    ide.launcherProcessId     3336
    ide.main.class     oracle.ide.boot.IdeLauncher
    ide.patches.dir     ide/lib/patches
    ide.pref.dir     C:\Documents and Settings\macmilp\Application Data\SQL Developer
    ide.pref.dir.base     C:\Documents and Settings\macmilp\Application Data
    ide.product     oracle.sqldeveloper
    ide.shell.enableFileTypeAssociation     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin\sqldeveloper.exe
    ide.splash.screen     splash.gif
    ide.startingArg0     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin\sqldeveloper.exe
    ide.startingcwd     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin
    ide.user.dir     C:\Documents and Settings\macmilp\Application Data\SQL Developer
    ide.user.dir.var     IDE_USER_DIR
    ide.work.dir     U:\\SQL Developer
    ide.work.dir.base     U:\
    java.awt.graphicsenv     sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob     sun.awt.windows.WPrinterJob
    java.class.path     ..\..\ide\lib\ide-boot.jar;..\..\lib\java\api\jaxb-api.jar;..\..\lib\java\api\jsr173_api.jar;
    ..\..\j2ee\home\lib\activation.jar;..\..\lib\java\shared\sun.jaxb\2.0\jaxb-xjc.jar;
    ..\..\lib\java\shared\sun.jaxb\2.0\jaxb-impl.jar;..\..\lib\java\shared\sun.jaxb\2.0\jaxb1-impl.jar
    java.class.version     49.0
    java.endorsed.dirs     D:\sun\java\jdk1.5.0_06\jre\lib\endorsed
    java.ext.dirs     D:\sun\java\jdk1.5.0_06\jre\lib\ext
    java.home     D:\sun\java\jdk1.5.0_06\jre
    java.io.tmpdir     C:\Temp\
    java.library.path     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin;.;C:\WINDOWS\system32;
    C:\WINDOWS;d:\oracle\tools\dev\9_0_2\jdk\jre\bin\classic;d:\oracle\tools\dev\9_0_2\jlib;
    D:\oracle\tools\dev\9_0_2\bin;d:\oracle\client\10_2_0_1\bin;
    d:\oracle\dbms\xe\10_2_0_1\app\oracle\product\10.2.0\server\bin;d:\merant\pvcs\vm\win32\bin;
    d:\merant\pvcs\vm\common\bin\win32;c:\windows\system32;c:\windows;c:\windows\system32\wbem;
    d:\cvs\cvsnt\2_0;d:\graphviz\2_12\Graphviz\bin;d:\microsoft\windows\xp\tools;
    d:\sun\java\jdk1.5.0_06\bin;d:\ruby\1_8_2\bin;u:\tools\bin;d:\pldoc\0_8_3_1;
    d:\graphviz\2_12\graphviz\bin;v:\tools\bin;d:\sun\java\jdk1.5.0_06\bin; d:\pldoc\0_8_3_1;d:\graphviz\2_12\Graphviz\bin;C:\Program Files\CVSNT\
    java.naming.factory.initial     oracle.javatools.jndi.LocalInitialContextFactory
    java.runtime.name     Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version     1.5.0_06-b05
    java.specification.name     Java Platform API Specification
    java.specification.vendor     Sun Microsystems Inc.
    java.specification.version     1.5
    java.util.logging.config.file     logging.conf
    java.vendor     Sun Microsystems Inc.
    java.vendor.url     http://java.sun.com/
    java.vendor.url.bug     http://java.sun.com/cgi-bin/bugreport.cgi
    java.version     1.5.0_06
    java.vm.info     mixed mode
    java.vm.name     Java HotSpot(TM) Client VM
    java.vm.specification.name     Java Virtual Machine Specification
    java.vm.specification.vendor     Sun Microsystems Inc.
    java.vm.specification.version     1.0
    java.vm.vendor     Sun Microsystems Inc.
    java.vm.version     1.5.0_06-b05
    jdbc.driver.home     /D:/oracle/client/10_2_0_1/
    jdbc.library     /D:/oracle/client/10_2_0_1/jdbc/lib/ojdbc14.jar
    line.separator     \r\n
    oracle.home     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper
    oracle.ide.util.AddinPolicyUtils.OVERRIDE_FLAG     true
    oracle.translated.locales     de,es,fr,it,ja,ko,pt_BR,zh_CN,zh_TW
    oracle.xdkjava.compatibility.version     9.0.4
    orai18n.library     /D:/oracle/client/10_2_0_1/jlib/orai18n.jar
    os.arch     x86
    os.name     Windows XP
    os.version     5.1
    path.separator     ;
    reserved_filenames     con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout,conout$
    sun.arch.data.model     32
    sun.boot.class.path     D:\sun\java\jdk1.5.0_06\jre\lib\rt.jar;D:\sun\java\jdk1.5.0_06\jre\lib\i18n.jar;
    D:\sun\java\jdk1.5.0_06\jre\lib\sunrsasign.jar;D:\sun\java\jdk1.5.0_06\jre\lib\jsse.jar;
    D:\sun\java\jdk1.5.0_06\jre\lib\jce.jar;D:\sun\java\jdk1.5.0_06\jre\lib\charsets.jar;D:\sun\java\jdk1.5.0_06\jre\classes
    sun.boot.library.path     D:\sun\java\jdk1.5.0_06\jre\bin
    sun.cpu.endian     little
    sun.cpu.isalist     pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
    sun.desktop     windows
    sun.io.unicode.encoding     UnicodeLittle
    sun.java2d.ddoffscreen     false
    sun.jnu.encoding     Cp1252
    sun.management.compiler     HotSpot Client Compiler
    sun.os.patch.level     Service Pack 2
    user.country     GB
    user.dir     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin
    user.home     C:\Documents and Settings\macmilp
    user.language     en
    user.name     pmacmillan
    user.timezone     Europe/London
    user.variant     
    windows.shell.font.languages     
    Extensions
    Name     Identifier     Version     Status
    ====     ==========     =======     ======
    Check For Updates     oracle.ide.webupdate     11.1.1.0.22.49.35     Loaded
    Code Editor     oracle.ide.ceditor     11.1.1.0.22.49.35     Loaded
    Database Connection Support     oracle.jdeveloper.db.connection     11.1.1.0.22.49.35     Loaded
    Database Object Explorers     oracle.ide.db.explorer     11.1.1.0.22.49.35     Loaded
    Database UI     oracle.ide.db     11.1.1.0.22.49.35     Loaded
    Diff/Merge     oracle.ide.diffmerge     11.1.1.0.22.49.35     Loaded
    Extended IDE Platform     oracle.javacore     11.1.1.0.22.49.35     Loaded
    External Tools     oracle.ide.externaltools     11.1.1.0.22.49.35     Loaded
    Feedback     oracle.ide.feedback     11.1.1.0.22.49.35     Loaded
    File Support     oracle.ide.files     11.1.1.0.22.49.35     Loaded
    File System Navigator     oracle.sqldeveloper.filenavigator     11.1.1.53.38     Loaded
    Help System     oracle.ide.help     11.1.1.0.22.49.35     Loaded
    History Support     oracle.jdeveloper.history     11.1.1.0.22.49.35     Loaded
    Import/Export Support     oracle.ide.importexport     11.1.1.0.22.49.35     Loaded
    Log Window     oracle.ide.log     11.1.1.0.22.49.35     Loaded
    Mac OS X Adapter     oracle.ideimpl.apple     11.1.1.0.22.49.35     Loaded
    Navigator     oracle.ide.navigator     11.1.1.0.22.49.35     Loaded
    Object Gallery     oracle.ide.gallery     11.1.1.0.22.49.35     Loaded
    Object Viewer     oracle.sqldeveloper.oviewer     11.1.1.53.38     Loaded
    Oracle IDE     oracle.ide     11.1.1.0.22.49.35     Loaded
    Oracle Microsoft Access Browser     oracle.sqldeveloper.thirdparty.access     11.1.1.53.38     Loaded
    Oracle Migration Workbench     oracle.sqldeveloper.migration     11.1.1.53.38     Loaded
    Oracle Migration Workbench - MS Access     oracle.sqldeveloper.migration.msaccess     11.1.1.53.38     Loaded
    Oracle Migration Workbench - MySQL     oracle.sqldeveloper.migration.mysql5     11.1.1.53.38     Loaded
    Oracle Migration Workbench - SQLServer     oracle.sqldeveloper.migration.sqlserver2005     11.1.1.53.38     Loaded
    Oracle Migration Workbench - Translation Core     oracle.sqldeveloper.migration.translation.core     11.1.1.53.38     Loaded
    Oracle Migration Workbench - Translation MS Access     oracle.sqldeveloper.migration.translation.msaccess     11.1.1.53.38     Loaded
    Oracle Migration Workbench - Translation MS SQL Server     oracle.sqldeveloper.migration.translation.sqlserver     11.1.1.53.38     Loaded
    Oracle Migration Workbench - Translation MySQL     oracle.sqldeveloper.migration.translation.mysql     11.1.1.53.38     Loaded
    Oracle Migration Workbench - Translation Sybase     oracle.sqldeveloper.migration.translation.sybase     11.1.1.53.38     Loaded
    Oracle Migration Workbench - Translation UI     oracle.sqldeveloper.migration.translation.gui     11.1.1.53.38     Loaded
    Oracle MySQL Browser     oracle.sqldeveloper.thirdparty.mysql     11.1.1.53.38     Loaded
    Oracle SQL Developer     oracle.sqldeveloper     11.1.1.53.38     Loaded
    Oracle SQL Developer Extras     oracle.sqldeveloper.extras     1.1.1.53.38     Loaded
    Oracle SQL Developer Reports     oracle.sqldeveloper.report     11.1.1.53.38     Loaded
    Oracle SQL Developer SearchBar     oracle.sqldeveloper.searchbar     11.1.1.53.38     Loaded
    Oracle SQL Developer TimesTen     oracle.sqldeveloper.timesten     1.5.0.1.1     Loaded
    Oracle SQL Server Browser     oracle.sqldeveloper.thirdparty.sqlserver     11.1.1.53.38     Loaded
    Oracle Sybase Browser     oracle.sqldeveloper.thirdparty.sybase     1.2.1.53.38     Loaded
    Oracle XML Schema Support     oracle.sqldeveloper.xmlschema     11.1.1.53.38     Loaded
    PROBE Debugger     oracle.jdeveloper.db.debug.probe     11.1.1.0.22.49.35     Loaded
    Peek     oracle.ide.peek     1.0     Loaded
    Replace With     oracle.ide.replace     11.1.1.0.22.49.35     Loaded
    Runner     oracle.ide.runner     11.1.1.0.22.49.35     Loaded
    SQL Worksheet Window     oracle.sqldeveloper.sqlworksheet     11.1.1.53.38     Loaded
    Search Bar     oracle.ide.searchbar     11.1.1.0.0     Loaded
    Snippet Window     oracle.sqldeveloper.snippet     11.1.1.53.38     Loaded
    Sybase 12     oracle.sqldeveloper.migration.sybase12     11.1.1.53.38     Loaded
    Sybase 15     oracle.sqldeveloper.migration.sybase15     11.1.1.53.38     Loaded
    Tuning     oracle.sqldeveloper.tuning     11.1.1.53.38     Loaded
    VHV     oracle.ide.vhv     11.1.1.0.22.49.35     Loaded
    Versioning Support     oracle.jdeveloper.vcs     11.1.1.0.22.49.35     Loaded
    Versioning Support for CVS     oracle.jdeveloper.cvs     11.1.1.0.22.49.35     Loaded
    Versioning Support for Subversion     oracle.jdeveloper.subversion     11.1.1.0.22.49.35     Loaded
    Web Browser and Proxy     oracle.ide.webbrowser     11.1.1.0.22.49.35     Loaded
    oracle.ide.dependency     oracle.ide.dependency     11.1.1.0.22.49.35     Loaded
    oracle.ide.indexing     oracle.ide.indexing     11.1.1.0.22.49.35     Loaded
    Thread dump:
    Full thread dump Java HotSpot(TM) Client VM (1.5.0_06-b05 mixed mode):
    "worksheet" prio=6 tid=0x2e5f1cf0 nid=0xcec in Object.wait() [0x30e3f000..0x30e3fce8]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x033d4858> (a java.awt.EventQueue$1AWTInvocationLock)
    at java.lang.Object.wait(Object.java:474)
    at java.awt.EventQueue.invokeAndWait(EventQueue.java:846)
    - locked <0x033d4858> (a java.awt.EventQueue$1AWTInvocationLock)
    at javax.swing.SwingUtilities.invokeAndWait(SwingUtilities.java:1257)
    at oracle.dbtools.sqlworksheet.sqlview.SqlEditor$2.construct(SqlEditor.java:866)
    - locked <0x06b38170> (a oracle.jdbc.driver.T4CConnection)
    - locked <0x06b38170> (a oracle.jdbc.driver.T4CConnection)
    at oracle.dbtools.raptor.utils.NamedSwingWorker$2.run(NamedSwingWorker.java:115)
    at java.lang.Thread.run(Thread.java:595)
    "IconOverlayTracker Timer" prio=6 tid=0x2d76ca38 nid=0xb8c in Object.wait() [0x3153f000..0x3153f
    9e8]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x06cffe60> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:474)
    at java.util.TimerThread.mainLoop(Timer.java:483)
    - locked <0x06cffe60> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:462)
    "pool-1-thread-1" prio=6 tid=0x2e5bbad8 nid=0x354 waiting on condition [0x3103f000..0x3103fa68]
    at sun.misc.Unsafe.park(Native Method)
    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:118)
    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQ
    ueuedSynchronizer.java:1767)
    at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:359)
    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:470)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:674)
    at java.lang.Thread.run(Thread.java:595)
    "Timer-2" prio=6 tid=0x2e601b18 nid=0xd20 in Object.wait() [0x30d3f000..0x30d3fae8]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x06abcbd8> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:474)
    at java.util.TimerThread.mainLoop(Timer.java:483)
    - locked <0x06abcbd8> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:462)
    "TextBufferScavenger" prio=6 tid=0x2e7f2008 nid=0xdc4 in Object.wait() [0x30aaf000..0x30aafd68]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x068e0780> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x068e0780> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at oracle.ide.model.TextNode$FacadeBufferReference$PollingThread.run(TextNode.java:1886)
    "IconOverlayTracker Timer" prio=6 tid=0x2e801f78 nid=0x700 in Object.wait() [0x2f26f000..0x2f26f
    ae8]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x060a9968> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:474)
    at java.util.TimerThread.mainLoop(Timer.java:483)
    - locked <0x060a9968> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:462)
    "IconOverlayTracker Timer" prio=6 tid=0x2e803d08 nid=0x33c in Object.wait() [0x2f16f000..0x2f16f
    b68]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x060a99e0> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:474)
    at java.util.TimerThread.mainLoop(Timer.java:483)
    - locked <0x060a99e0> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:462)
    "TimerQueue" daemon prio=6 tid=0x2d926be8 nid=0xef8 in Object.wait() [0x2e13f000..0x2e13fb68]
    at java.lang.Object.wait(Native Method)
    at javax.swing.TimerQueue.run(TimerQueue.java:233)
    - locked <0x058debd0> (a javax.swing.TimerQueue)
    at java.lang.Thread.run(Thread.java:595)
    "AWT-EventQueue-0" prio=6 tid=0x2d8f8cd0 nid=0xa10 waiting for monitor entry [0x2dfce000..0x2dfc
    fbe8]
    at oracle.jdbc.driver.PhysicalConnection.isClosed(PhysicalConnection.java:1411)
    - waiting to lock <0x06b38170> (a oracle.jdbc.driver.T4CConnection)
    at oracle.dbtools.raptor.controls.cellrenderers.DefaultCellRenderer.getTableCellRenderer
    Component(DefaultCellRenderer.java:103)
    at javax.swing.JTable.prepareRenderer(JTable.java:3924)
    at javax.swing.plaf.basic.BasicTableUI.paintCell(BasicTableUI.java:2070)
    at javax.swing.plaf.basic.BasicTableUI.paintCells(BasicTableUI.java:1972)
    at javax.swing.plaf.basic.BasicTableUI.paint(BasicTableUI.java:1895)
    at javax.swing.plaf.ComponentUI.update(ComponentUI.java:142)
    at javax.swing.JComponent.paintComponent(JComponent.java:742)
    at javax.swing.JComponent.paint(JComponent.java:1005)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JViewport.paint(JViewport.java:728)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JSplitPane.paintChildren(JSplitPane.java:1021)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintWithOffscreenBuffer(JComponent.java:4963)
    at javax.swing.JComponent.paintDoubleBuffered(JComponent.java:4916)
    at javax.swing.JComponent._paintImmediately(JComponent.java:4859)
    at javax.swing.JComponent.paintImmediately(JComponent.java:4666)
    at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:451)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueueUtilit
    ies.java:114)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    "AWT-Windows" daemon prio=6 tid=0x2d8df4e8 nid=0xbb4 runnable [0x2ddcf000..0x2ddcfce8]
    at sun.awt.windows.WToolkit.eventLoop(Native Method)
    at sun.awt.windows.WToolkit.run(WToolkit.java:269)
    at java.lang.Thread.run(Thread.java:595)
    "AWT-Shutdown" prio=6 tid=0x2d8df0f0 nid=0x8e8 in Object.wait() [0x2dccf000..0x2dccfd68]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x05872240> (a java.lang.Object)
    at java.lang.Object.wait(Object.java:474)
    at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:259)
    - locked <0x05872240> (a java.lang.Object)
    at java.lang.Thread.run(Thread.java:595)
    "Java2D Disposer" daemon prio=6 tid=0x2d87d8d0 nid=0x8ec in Object.wait() [0x2dbcf000..0x2dbcf9e
    8]
    at java.lang.Object.wait(Native Method)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x058722c8> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at sun.java2d.Disposer.run(Disposer.java:107)
    at java.lang.Thread.run(Thread.java:595)
    "Low Memory Detector" daemon prio=6 tid=0x00c74c70 nid=0xa48 runnable [0x00000000..0x00000000]
    "CompilerThread0" daemon prio=6 tid=0x00c73328 nid=0x9ac waiting on condition [0x00000000..0x2d0
    bf84c]
    "Signal Dispatcher" daemon prio=6 tid=0x00c72768 nid=0x6a4 waiting on condition [0x00000000..0x0
    0000000]
    "Finalizer" daemon prio=8 tid=0x00c68818 nid=0x960 in Object.wait() [0x2cebf000..0x2cebfce8]
    at java.lang.Object.wait(Native Method)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x058201f0> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=6 tid=0x00c67d60 nid=0xd0 in Object.wait() [0x2cdbf000..0x2cdbfc
    68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:474)
    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
    - locked <0x05820270> (a java.lang.ref.Reference$Lock)
    "main" prio=6 tid=0x00858ae0 nid=0x874 waiting on condition [0x00000000..0x0012fb70]
    "VM Thread" prio=6 tid=0x00c283c8 nid=0x5d8 runnable
    "VM Periodic Task Thread" prio=6 tid=0x00c72440 nid=0x674 waiting on condition
    Message was edited by:
    fac586

  • My mac keeps freezing when turned on from Sleep

    Hello,
    I bought in iMac last Summer. About a couple weeks in, I started having issues with my iMac freezing when I would turn it on from Sleep mode. This would not happen every time but instead, intermittently. It also will manifest itself in different ways: programs will freeze one at a time until all programs are frozen I just have spinning wheel, sometimes it will freeze and shut itself down, sometimes it will go to a grey screen, etc. This has made it an extremely hard issue to reproduce at the drop of a hat. The main reason this alarms is that I have a 4-year old Macbook that still works incredibly well, despite being slowerThroughout the past months, I have done just about everything I can think of (and was told to do by Apple support) to resolve this issue.
    I have:
    Reset the SMC and PRAM
    Tried booting in Safe Mode
    Deleted the EnergySaverPreference .plist file
    Spent hours on the phone/text with various Apple technicians troubleshooting the issues.
    Twice done a clean wipe and re-installed OSX. I had this problem with both Yosemite and Mavericks. I have made sure to never restore my Time Machine back ups but instead, bring isolated files in one by one and no "System Files" – just songs, music, documents, and applications. 
    Twice taken it in to the Apple Store to be repaired and nothing has been done to resolve the problem. I just got it back and within two days, it froze again in the same manner as before.
    My technical specs are: iMac (21.5-inch, Late 2013,) 2.7 GHz Intel Core i5 processor, 8GB 1600 MHz DDR Ram, running OSX Yosemite 10.10.2.
    I feel like I am really beginning to run out of options. I feel like I can not trust this machine to do daily tasks or the large projects for which I bought it.  I do not have AppleCare but obviously this feels like a pre-existing software or hardware issue and I'm still under warranty. Apple has implied that there would be no way for me to receive any money back and the likelihood of getting a device replacement is very low. I don't have a car so taking my iMac via taxi or lugging it around via public transportation is both very inconvenient and a bit pricey for me. Any advice, technical, for customer-relations, or otherwise?
    Any help would be greatly appreciated.

    Here's what I got:
    Anonymous UUID:       F7046045-224A-33C4-D416-BA38288F06AA
    Tue Mar 24 21:47:30 2015
    *** Panic Report ***
    panic(cpu 1 caller 0xffffff800c1c1694): "launchd died\nState at Last Exception:\n\n"@/SourceCache/xnu/xnu-2782.10.73/bsd/kern/kern_exit.c:361
    Backtrace (CPU 1), Frame : Return Address
    0xffffff8116843e50 : 0xffffff800bd2fe41
    0xffffff8116843ed0 : 0xffffff800c1c1694
    0xffffff8116843f40 : 0xffffff800c1c135c
    0xffffff8116843f50 : 0xffffff800c24b386
    0xffffff8116843fb0 : 0xffffff800be36e86
    BSD process name corresponding to current thread: launchd
    Mac OS version:
    14C1514
    Kernel version:
    Darwin Kernel Version 14.1.0: Thu Feb 26 19:26:47 PST 2015; root:xnu-2782.10.73~1/RELEASE_X86_64
    Kernel UUID: 270413F7-3B44-3602-894F-AC0D392FCF8E
    Kernel slide:     0x000000000ba00000
    Kernel text base: 0xffffff800bc00000
    __HIB  text base: 0xffffff800bb00000
    System model name: iMac14,1 (Mac-031B6874CF7F642A)
    System uptime in nanoseconds: 17919473593239
    last loaded kext at 10628493338895: com.apple.iokit.SCSITaskUserClient 3.7.3 (addr 0xffffff7f8e359000, size 36864)
    last unloaded kext at 10755631197884: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7f8e330000, size 16384)
    loaded kexts:
    com.apple.iokit.SCSITaskUserClient 3.7.3
    com.apple.filesystems.smbfs 3.0.0
    com.apple.driver.AudioAUUC 1.70
    com.apple.driver.AGPM 100.15.5
    com.apple.driver.ApplePlatformEnabler 2.1.7d1
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AppleBluetoothMultitouch 85.3
    com.apple.iokit.IOBluetoothSerialManager 4.3.2f6
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.driver.AppleMikeyDriver 269.25
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleHDA 269.25
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.AppleHV 1
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.driver.AppleSMCLMU 2.0.7d0
    com.apple.driver.AppleMCCSControl 1.2.11
    com.apple.driver.AppleIntelHD5000Graphics 10.0.2
    com.apple.driver.AppleIntelFramebufferAzul 10.0.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub 705.4.2
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.7.0
    com.apple.iokit.AppleBCM5701Ethernet 10.1.3
    com.apple.driver.AppleSDXC 1.6.5
    com.apple.driver.AirPort.Brcm4360 910.26.12
    com.apple.driver.AppleAHCIPort 3.1.0
    com.apple.driver.AppleUSBXHCI 710.4.11
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.7.3
    com.apple.iokit.IOUSBMassStorageClass 3.7.1
    com.apple.kext.triggers 1.0
    com.apple.driver.AppleBluetoothHIDKeyboard 176.2
    com.apple.driver.AppleHIDKeyboard 176.2
    com.apple.driver.IOBluetoothHIDDriver 4.3.2f6
    com.apple.driver.AppleMultitouchDriver 262.33.1
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 269.25
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.AppleHDAController 269.25
    com.apple.iokit.IOHDAFamily 269.25
    com.apple.iokit.IOAudioFamily 203.3
    com.apple.vecLib.kext 1.2.0
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.8.1d38
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.iokit.IOBluetoothFamily 4.3.2f6
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.AppleThunderboltEDMSink 4.0.2
    com.apple.driver.AppleSMC 3.1.9
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.iokit.IOSurface 97.0.1
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.AppleGraphicsDeviceControl 3.8.6
    com.apple.iokit.IOAcceleratorFamily2 156.6.1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.3
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.driver.AppleThunderboltDPInAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPOutAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily 4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.driver.AppleThunderboltNHI 3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.1
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.iokit.IO80211Family 710.55
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.7.5
    com.apple.iokit.IOUSBFamily 710.4.14
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 396
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0

  • ITunes 11.2.1 freezes when I connect my iPhone 5. 'Application not responding'

    Hi,
    Recently I upgraded Mavericks. Since then I cant sync my phone anymore. iTunes works fine untill I plugin my phone. Then the spinwheel comes up and stays there forever. In dock it says 'Application Not Responding'.
    iPhone 5, iTunes 11.2.1, Macbook Pro 10.9.3 2.6 GHz 8Gb
    Does somebody can help me out? That would be very very nice!

    Hi BlackNikes
    I had exact same problem, but have now resolved it. If your problem is the same as mine your SyncServices folders have been corrupted while itunes was updated.
    See my post or spyder683 post at https://discussions.apple.com/thread/6223064?start=60&tstart=0
    I am running Mavericks 10.9.3 and updated itunes to 11.2.0 and then experienced problems with itunes crashing, 11.2.2 didn't resolve the problem. I found iTunes worked fine if all my other devices (iphone, ipad, ipod) were turned off, as soon as I powered any one of them up and itunes detected them over wifi or USB itunes then froze with the dreaded colored ball spinning.
    In Mavericks 10.9.3 the SyncServices folder is not visible going into the normal library/Application support folder, your instructions below took me to a different area in the system, or at least made these folders visible. Following your instructions I was able to locate and delete both SyncService & SyncServices folders and I launched iTunes again while my devices were powered up and the issue has gone. Bliss!!!
    Many Thanks
    spyder683 wrote:
    Hi Culero,
    The fix of deleting the SyncServices folder is for Mac systems. From your desktop / finder, click the "Go" menu at the top, then "Go to Folder ..." Paste this into the field: ~/Library/Application Support
    The SyncServices folder should be in there. I had both a SyncService and a SyncServices folder. The second one should, when deleted, help with the problem you and I both had of iTunes freezing when an iOS device is plugged in.
    Hope this helps

  • ITunes 10.7(21) freezes when iPhone 4 (iOS 6) plugged in

    Hello,
    Since the latest iTunes update to 10.7, I can no longer plug in my iPhone, iPod without iTunes freezing. iTunes stops responding, and the only way to get out of it is to force quit.
    This occurs accross two 21" iMacs, one running Mountain Lion 10.8.2 and one running Lion. All iDevices are up to date. iPhone 4 running iOS 6. It's an older iPod shuffle, but it worked and sync'd just fine up until the latest iTunes update.
    Thanks in advance for any help.

    Solved! by Aquis
    See this thread: iTunes Freezes when connecting iPhone (AppleMobileDeviceHelper/SyncServer to blame?)

  • I tune freezes when I try to burn

    OK, like everyone else I have read through countless threads looking for a solution to my problem. My problem being that I can no longer burn play lists containing both purchased and imported music. I can burn just purchased or just imported, but not together. So this leaves me to believe that this is an iTunes issue. (It all started back when 4.9 was out.) Since then I have removed it, repaired, upgraded it, and everything else I could think of under the sun. I was hoping when iTunes 6 came out it would solve the problem, but it didn't. I even thought to myself hey maybe it is my computer so I took the songs I wanted to burn and put them on multiple machines (3 others) and try to burn the with iTunes. No luck same thing happened, thought hey maybe it is the songs. Nope they couldn't do it with their own songs either. So like I said this has to be an iTunes software issue. Now I am sure their are more people out their with the same problem and they have called apple and sent their diagnostics in, but no one has come up with any answers. I have searched and searched, but their are no answers out their. You would have figured by now someone would be like hey I have found a solution. Oh well all I am asking in this semi-rant is for an answer to the problem why iTunes freezes when trying to burn playlists containing purchased and imported music? Thanks for your time.
    -Lost

    Hello gardinfool,
    Thanks for the question, and welcome to Apple Support Communities.
    I understand you are having issues with FaceTime for Mac. The following resource outlines various troubleshooting steps that may lead to a resolution:
    FaceTime for Mac: Troubleshooting FaceTime
    http://support.apple.com/kb/TS4185
    Thanks,
    Matt M.

  • ITunes freezes when I try to burn a CD

    When I try to burn a CD, iTunes freezes (with no error message) and I have to use Task Manager to close it. It also freezes when I click on the "Burn" tab in Properties and I have to use Task Manager to close it. I have tried to run CD Diagnostics (without a CD in it as instructed on other threads), but it locks up. Everything else on iTunes works, I have uninstalled iTunes and reinstalled it, and I have checked and updated all Windows updates.
    Any help would be really appreciated!!

    I need more information about your hardware configuration. Please run the iTunes Help menu -> Run CD diagnostics and post the output here.

  • My macbook pro keeps freezing when I am on the internet. How can I find out what the issue is and fix it?

    my macbook pro keeps freezing when I am on the internet. How can I find out what the issue is and fix it?

    Here is mine, sorry if i included anything i wasnt supposed to!
    7/18/13 1:04:13.797 PM ReportCrash[340]: failed looking up LS service ( scCreateSystemService returned MACH_PORT_NULL, called from SetupCoreApplicationServicesCommunicationPort, so using client-side NULL calls.
    7/18/13 1:04:13.797 PM ReportCrash[340]: LaunchServices/5123589: Unable to lookup coreservices session port for session 0x186a0 uid=0 euid=0
    7/18/13 1:04:14.491 PM ReportCrash[340]: Saved crash report for PluginProcess[316] version 8536 (8536.30.1) to /Library/Logs/DiagnosticReports/PluginProcess_2013-07-18-130414_(REMOVED MY NAME).crash
    7/18/13 1:05:08.000 PM bootlog[0]: BOOT_TIME 1374170708 0
    Process:         PluginProcess [316]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app/Contents/ MacOS/PluginProcess
    Identifier:      PluginProcess
    Version:         8536 (8536.30.1)
    Code Type:       X86-64 (Native)
    Parent Process:  Safari [300]
    User ID:         501
    Date/Time:       2013-07-18 13:04:09.864 -0500
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 000000010e2de000-000000010e2df000 [    4K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app/Contents/ MacOS/PluginProcess
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff890f0d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff86251dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff862519ee _dispatch_mgr_thread + 54
    Thread 2:: BackgroundThread
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x000000011107989b unregister_ShockwaveFlash + 60427
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110ba093e 0x110b72000 + 190782
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 3:: BackgroundThread
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x000000011107989b unregister_ShockwaveFlash + 60427
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110ba093e 0x110b72000 + 190782
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 4:: BackgroundThread
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x000000011107989b unregister_ShockwaveFlash + 60427
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110ba093e 0x110b72000 + 190782
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 5:: BackgroundThread
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x000000011107989b unregister_ShockwaveFlash + 60427
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110ba093e 0x110b72000 + 190782
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 6:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 7:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 8:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 9:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff890f06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff851b6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff851b6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 11:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 12:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 13:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 14:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 15:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff890ee686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff890edc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff86af5233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff86afa916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff86afa0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff90afe7ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.AppKit                        0x00007fff8be7c306 -[NSAnimation(NSInternal) _runBlocking] + 377
    7   com.apple.AppKit                        0x00007fff8be7c168 -[NSAnimation(NSInternal) _animationThread] + 65
    8   libdispatch.dylib                       0x00007fff86252f01 _dispatch_call_block_and_release + 15
    9   libdispatch.dylib                       0x00007fff8624f0b6 _dispatch_client_callout + 8
    10  libdispatch.dylib                       0x00007fff862501fa _dispatch_worker_thread2 + 304
    11  libsystem_c.dylib                       0x00007fff851b6d0b _pthread_wqthread + 404
    12  libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 16:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff890ee602 _kernelrpc_mach_port_destroy_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff890ef464 mach_port_destroy + 22
    2   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e53b24 GhalInterface::deallocateHeap(void**) + 164
    3   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e53a68 GHAL3D::CPrivateResource::~CPrivateResource() + 56
    4   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e53a08 GHAL3D::CIndirectStateHeap::~CIndirectStateHeap() + 24
    5   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6d2ad GHAL3D::CIndirectStateHeap::Delete(GHAL3D::CIndirectStateHeap*&) + 29
    6   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6cf8c GHAL3D::CIndirectStateMemoryManager::~CIndirectStateMemoryManager() + 652
    7   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113f6fbc8 GHAL3D::CGen6IndirectStateMemoryManager::~CGen6IndirectStateMemoryManager() + 24
    8   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6ccad GHAL3D::CIndirectStateMemoryManager::Delete(GHAL3D::CIndirectStateMemoryManager *&) + 29
    9   com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6cc6c GHAL3D::CStateProcessorCache::~CStateProcessorCache() + 28
    10  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113fe0c6e GHAL3D::CGen6StateProcessorCache::~CGen6StateProcessorCache() + 14
    11  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113fe0e4d GHAL3D::CGen6StateProcessorCache::Delete(GHAL3D::CGen6StateProcessorCache*&) + 29
    12  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113f5799b GHAL3D::CGen6PrivateStateProcessor::Finalize() + 139
    13  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6c3ba GHAL3D::CPrivateStateProcessor::Delete(GHAL3D::CPrivateStateProcessor*&) + 26
    14  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6bb97 GHAL3D::CContext::~CContext() + 55
    15  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6bb4d GHAL3D::CContext::Delete(GHAL3D::CContext*&) + 29
    16  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x0000000113e6b8a4 glrDestroyGHAL(GLDContextRec*) + 516
    17  com.apple.driver.AppleIntelHD3000GraphicsGLDriver          0x00000001140adf88 glrTerminateContext + 1627
    18  libGPUSupport.dylib                     0x000000010f9d3fbd gldDestroyContext + 114
    19  GLEngine                                0x0000000113a258fd gliDestroyContext + 162
    20  com.apple.opengl                        0x00007fff8ce5f0a3 CGLReleaseContext + 190
    21  com.apple.QuartzCore                    0x00007fff85d473a2 CA::(anonymous namespace)::AsyncDeletion::callback(void*) + 122
    22  libdispatch.dylib                       0x00007fff8624f0b6 _dispatch_client_callout + 8
    23  libdispatch.dylib                       0x00007fff862501fa _dispatch_worker_thread2 + 304
    24  libsystem_c.dylib                       0x00007fff851b6d0b _pthread_wqthread + 404
    25  libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff890f06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff851b6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff851b6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 18:: ScriptTimeout
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110dfd78b 0x110b72000 + 2668427
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 19:: CoreLoop
    0   libsystem_kernel.dylib                  0x00007fff890f00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff851b8fe9 _pthread_cond_wait + 869
    2   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079852 unregister_ShockwaveFlash + 60354
    3   com.macromedia.FlashPlayer-10.6.plugin          0x0000000110fa7c83 0x110b72000 + 4414595
    4   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079a44 unregister_ShockwaveFlash + 60852
    5   com.macromedia.FlashPlayer-10.6.plugin          0x0000000111079acb unregister_ShockwaveFlash + 60987
    6   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 20:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff890f0386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8523e800 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff8523e717 usleep + 54
    3   com.apple.AppKit                        0x00007fff8c13f838 -[NSUIHeartBeat _heartBeatThread:] + 543
    4   com.apple.Foundation                    0x00007fff90af9562 __NSThread__main__ + 1345
    5   libsystem_c.dylib                       0x00007fff851b47a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff851a11e1 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff890f06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff851b6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff851b6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff890f06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff851b6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff851b6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff851a11d1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000001  rbx: 0x0000000000000000  rcx: 0x00007fff890f053e  rdx: 0x0000000000000000
      rdi: 0x00000001125b33ec  rsi: 0x0000000000000001  rbp: 0x0000000000000000  rsp: 0x124782f000000000
       r8: 0xffff8047bfbfadaf   r9: 0x000000000000003f  r10: 0x00007fff890f1342  r11: 0x0000000000000246
      r12: 0x0000000000000001  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x4d55545800000000
      rip: 0x0000000000000000  rfl: 0x0000000000010202  cr2: 0x0000000000000000
    Logical CPU: 0
    Binary Images:
           0x10e2de000 -        0x10e2defff  com.apple.WebKit.PluginProcess (8536 - 8536.30.1) <A72AA77A-B8D0-359F-AD62-C201663A5340> /System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app/Contents/ MacOS/PluginProcess
           0x10e2e3000 -        0x10e2e4fff  PluginProcessShim.dylib (7536.30.1) <3A07CA89-E38A-3445-AA26-05B2F437C153> /System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app/Contents/ MacOS/PluginProcessShim.dylib
           0x10f9ae000 -        0x10f9b2ff7 +com.macromedia.Flash Player.plugin (11.8.800.94 - 11.8.800.94) <8AB5EF31-4EF9-29E1-9A89-1D693E50EF2E> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
           0x10f9b7000 -        0x10f9bcfff  com.apple.agl (3.2.1 - AGL-3.2.1) <F3FD497C-AEB8-35CB-92D4-1669B941435F> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10f9c3000 -        0x10f9c8fff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 - 2.3.7fc4) <586F677E-D0F8-33B2-B6ED-41ED81C9EED9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10f9d1000 -        0x10f9defff  libGPUSupport.dylib (8.9.2) <0D32763C-7F3D-3FDB-9EDB-760BB7AFFA04> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x10f9e5000 -        0x10f9eefe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x110b72000 -        0x112474ff7 +com.macromedia.FlashPlayer-10.6.plugin (11.8.800.94 - 11.8.800.94) <C2E6FDA9-5084-7801-3C01-184940681DAF> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
           0x113a10000 -        0x113bcefff  GLEngine (8.9.2) <420E03C3-B91D-33C7-A1C4-BE60A1544971> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x113c05000 -        0x113d75fff  libGLProgrammability.dylib (8.9.2) <83DBCC22-F711-3F9D-B622-6DE5D9DD90AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x113dad000 -        0x11416aff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.12.47 - 8.1.2) <41C027A9-3329-340E-995A-6B66C54B7DAD> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
           0x11429a000 -        0x1142c5fff  GLRendererFloat (8.9.2) <18D6F0AD-C5F1-3E8F-89C2-89426A3D6FE4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
        0x7fff6dede000 -     0x7fff6df1293f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff849e5000 -     0x7fff84ae3fff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff84ae4000 -     0x7fff84b78ff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff84b79000 -     0x7fff84b82ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff84bc2000 -     0x7fff84bc5ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff84bc6000 -     0x7fff84bddfff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff84bde000 -     0x7fff84beafff  libCSync.A.dylib (332) <47466CF6-EB5C-3312-9E24-178F4410A92B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff84bed000 -     0x7fff84cbfff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff84cce000 -     0x7fff84cebff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff84cec000 -     0x7fff84d11ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff84dcb000 -     0x7fff84deaff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff84deb000 -     0x7fff84df0fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff84dfa000 -     0x7fff84e51ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff84e52000 -     0x7fff84e53fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff84e54000 -     0x7fff84e58fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff84e59000 -     0x7fff85170ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff85171000 -     0x7fff8519dff7  libRIP.A.dylib (332) <D26BC320-B415-3C4D-B57F-D525FC361BB2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff851a0000 -     0x7fff8526cff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff8526d000 -     0x7fff85bfd4af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff85bfe000 -     0x7fff85c9cff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff85c9d000 -     0x7fff85e4bfff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff85e4c000 -     0x7fff85e78fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8624d000 -     0x7fff86262ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff86263000 -     0x7fff86263fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff862d5000 -     0x7fff862dbff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff862dc000 -     0x7fff862dcffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8633a000 -     0x7fff8633efff  libCGXType.A.dylib (332) <17C8DD17-B3CB-3633-B252-C368AE51204C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8633f000 -     0x7fff86341fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff86342000 -     0x7fff863c1ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff863c2000 -     0x7fff863d7fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff863de000 -     0x7fff863defff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8643a000 -     0x7fff8644efff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff86477000 -     0x7fff86485fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff86486000 -     0x7fff86537fff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff86538000 -     0x7fff865b9fff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff865ba000 -     0x7fff8668dff7  com.apple.DiscRecording (7.0 - 7000.2.4) <E5F3F320-1049-32D8-8189-916EF5C40A1A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8668e000 -     0x7fff86783fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff867df000 -     0x7fff86800fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff86801000 -     0x7fff8683efef  libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8683f000 -     0x7fff86841ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff86842000 -     0x7fff86847fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff86848000 -     0x7fff86895fff  com.apple.CoreMediaIO (308.0 - 4155.4) <B563579E-469D-39A1-975C-F4EDD419602E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff868f6000 -     0x7fff868f7ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff869fb000 -     0x7fff86a1dff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff86a1e000 -     0x7fff86ac4ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff86ac5000 -     0x7fff86cafff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff86cb0000 -     0x7fff86cb0fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff86f27000 -     0x7fff86f41fff  com.apple.CoreMediaAuthoring (2.1 - 914) <23F2B9D0-7B73-3C42-8EDC-8ADBF9C7B8C2> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff86f42000 -     0x7fff86faaff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff86fab000 -     0x7fff86facfff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff86fad000 -     0x7fff86fbfff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff87007000 -     0x7fff87008fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff87277000 -     0x7fff872c3ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff872c4000 -     0x7fff872c7fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8735f000 -     0x7fff873b0ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff873b1000 -     0x7fff8740dff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff874eb000 -     0x7fff874f2fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff87515000 -     0x7fff87564ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff87565000 -     0x7fff8767efff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8767f000 -     0x7fff876c2ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff876c3000 -     0x7fff876e2ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8779c000 -     0x7fff8779dff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff8779e000 -     0x7fff877a4fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff87801000 -     0x7fff879edff7  com.apple.WebKit2 (8536 - 8536.30.1) <5A3C2412-FF47-3160-9634-32222C98D887> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff879ee000 -     0x7fff879eefff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff879ef000 -     0x7fff87af1fff  libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff87af2000 -     0x7fff87b2dfff  com.apple.LDAPFramework (2.4.28 - 194.5) <7C71C445-2B52-3AC0-97E5-9F2E692C8F5C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff87b68000 -     0x7fff87b8ffff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff87b90000 -     0x7fff87b94ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff87b95000 -     0x7fff87bc6ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff87bc7000 -     0x7fff87bf2fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff87bf3000 -     0x7fff87bf5fff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff87c46000 -     0x7fff87e46fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff87e47000 -     0x7fff87e49fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff87e4a000 -     0x7fff87e84ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff87e85000 -     0x7fff87e85fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff88155000 -     0x7fff88160ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff88169000 -     0x7fff8817ffff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff88181000 -     0x7fff881c0ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff881c1000 -     0x7fff885defff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff885df000 -     0x7fff88750ff7  com.apple.QTKit (7.7.1 - 2599.31) <1CBAB8B9-E335-33E3-B442-60105D265CB7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8879b000 -     0x7fff887a9ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff887aa000 -     0x7fff887b8ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
        0x7fff887b9000 -     0x7fff887e7ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff88890000 -     0x7fff88992fff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff88993000 -     0x7fff889c9fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff889ca000 -     0x7fff889d6fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff88a5a000 -     0x7fff88a69ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff88fda000 -     0x7fff890b4fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff890b5000 -     0x7fff890ddfff  libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff890de000 -     0x7fff890f9ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
        0x7fff89c55000 -     0x7fff89ca0fff  com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff89cad000 -     0x7fff89cb1fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff89cb2000 -     0x7fff89d15ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff89d16000 -     0x7fff89d40ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff89d41000 -     0x7fff89d58fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff89d59000 -     0x7fff89df4fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff89e87000 -     0x7fff89e8fff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff89e90000 -     0x7fff89ee9ff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff89eea000 -     0x7fff8a004fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8a005000 -     0x7fff8a2a0ff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8a2a1000 -     0x7fff8a572ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8a573000 -     0x7fff8a581fff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8a582000 -     0x7fff8a60fff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8a610000 -     0x7fff8a665ff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8a666000 -     0x7fff8a7c4fef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8a800000 -     0x7fff8aab7ff7  com.apple.MediaToolbox (1.0 - 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8aaec000 -     0x7fff8aaecfff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8aaed000 -     0x7fff8aba0ff7  com.apple.PDFKit (2.8.4 - 2.8.4) <BD6E8774-1C8B-3CD1-B5FA-7352B2173068> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8accc000 -     0x7fff8acf3ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8acf4000 -     0x7fff8ad38fff  libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
        0x7fff8ad39000 -     0x7fff8ad44fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8ad45000 -     0x7fff8adc5ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8adce000 -     0x7fff8add0ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8add1000 -     0x7fff8add2ff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
        0x7fff8add8000 -     0x7fff8adfaff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff8adfb000 -     0x7fff8ae02fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff8afa1000 -     0x7fff8afb4ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8b029000 -     0x7fff8b126fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff8b155000 -     0x7fff8b1b4fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8b21d000 -     0x7fff8b279fff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8b27a000 -     0x7fff8b39292f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8b393000 -     0x7fff8bb3afff  com.apple.CoreAUC (6.16.13 - 6.16.13) <8CBFBC9C-0773-3DEB-AF99-989008CB2B36> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8bb3b000 -     0x7fff8bb3cff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff8bb3d000 -     0x7fff8bc48fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8bcb8000 -     0x7fff8bd07fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8bd3a000 -     0x7fff8bd7dff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8bdb3000 -     0x7fff8bdc0fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8be05000 -     0x7fff8ca32fff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8ca33000 -     0x7fff8ca82ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff8ca83000 -     0x7fff8cbd5fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8ce5a000 -     0x7fff8ce69fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8ce6a000 -     0x7fff8cf8afff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8cf8b000 -     0x7fff8cf90fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8cf91000 -     0x7fff8cfbffff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8cfec000 -     0x7fff8d428fef  com.apple.VideoToolbox (1.0 - 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8d436000 -     0x7fff8d48dff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8d48e000 -     0x7fff8d553ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8d56f000 -     0x7fff8d966fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8d967000 -     0x7fff8d9e9ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8d9ea000 -     0x7fff8d9f7ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8d9f8000 -     0x7fff8d9f8fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8d9f9000 -     0x7fff8dd29fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8dd33000 -     0x7fff8dd5ffff  com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8dd63000 -     0x7fff8ddbdfff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8de4c000 -     0x7fff8de53fff  libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8de57000 -     0x7fff8e08cff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8e09b000 -     0x7fff8e33fff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8e34c000 -     0x7fff8e409ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8e5d1000 -     0x7fff8e66bfff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8e66c000 -     0x7fff8e6b6ff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8e708000 -     0x7fff8e70bfff  libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8e70c000 -     0x7fff8e71fff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff8e723000 -     0x7fff8e779fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8e77a000 -     0x7fff8e785ff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8e786000 -     0x7fff8e797ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff8e798000 -     0x7fff8e800fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8e801000 -     0x7fff8e99cfef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8e99d000 -     0x7fff8e9beff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8e9bf000 -     0x7fff8eabcff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8eb11000 -     0x7fff8eb7eff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8eb7f000 -     0x7fff8eb89fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8eb8a000 -     0x7fff8ee39fff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8ee3a000 -     0x7fff8ee3efff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8ee78000 -     0x7fff8eeb8ff7  com.apple.MediaKit (14 - 687) <8A

  • HELP!! iPod Classic won't show up in iTunes, and FREEZES when I try

    Last night, I hooked my iPod Classic to my computer to sync it. It didn't show up in iTunes, and instead, it froze, quite suddenly. I had to wait until the battery ran down, then charge it up again(luckily, all my music and video were still present). Today, I tried once again to hook it up. This time, the "Connected/Eject before disconnecting" screen appeared, so I figured it was working(that didnn't happen last night, it just froze immediatly). Unfortunately, I was wrong. It still hasn't shown up in iTunes, and now, it's frozen again!
    WHAT is going on?

    PT wrote:
    In order to see the post link, you need to drill down to the subtopic level of a discussion area. If you see a list of subtopics, you are not down far enough.
    For example, from the main discussion menu, you can choose Classic iPod and you will see the following...
    Note that in the Classic discussion there are three sub-topics you can choose and NO post link yet. Now pick any sub-topic, for example, pick "Using iPod Classic" and you will get the following...
    Now you have a link to post a new topic.
    Cheers,
    Patrick
    Ummm....ok, thanks for answering the completely irrelevant question that someone else asked, but how about dealing with the actual topic of this thread?!
    Seriously, why did my iPod Classic freeze when I tried to hook it up??? It happened twice. It seems to be working now, but still, I'm concerned.

  • Late 2007 MB Freezes when waking from Sleep after Lion Upgrade

    I have a Late 2007 MacBook that I recently upgraded from Snow Leopard to Lion.  Since the upgrade, the computer occassionally freezes when waking up from Sleep (putting it to sleep by shutting the screen).  Sometimes, I will see about 1-2 seconds of activity (i.e. AIrPort icon searching for network), but then the screen will turn black and the computer will restart.  Other times, I actually get a kernel panic. 
    I never had this issue with Snow Leopard, and it seems to happen more often if I try to use the computer (i.e. move the mouse or press a key on the keyboard) immediately after I open the screen and while it's still waking up.  By being patient and giving the computer 5-10 seconds to wake up, it seems to only freeze about 1 out of every 7 times when waking up, but it's stil frustrating to not know whether or not I'm going to lose my work anytime I put the computer to sleep.
    From other issues that I've researched, I've disabled Bluetooth completely (which reportedly fixed some similar issues), but I still had periodic freezes even with it disabled.
    The only thing I can think of that might be contributing to a weird hardware issue is that the AirPort card died on me a few years ago, and I had to replace it with an AirPort Extreme from a Late 2007 15" MacBook Pro (I'm pretty sure the model of the card I put in is AR5BXB72, although I could open my computer back up to verify if that would be helpful).  Snow Leopard seemed to be perfectly fine with that card, and Lion is ok for the most part (WiFi works perfectly fine), but I'm wondering if I need to update/change any Kexts for that piece of hardware.
    Here is one of the kernel panic reports from about 2 weeks ago:
    Sat Jan 19 20:56:41 2013
    Machine-check capabilities (cpu 1) 0x0000000000000806:
    family: 6 model: 15 stepping: 10 microcode: 146
    Intel(R) Core(TM)2 Duo CPU     T7300  @ 2.00GHz
    6 error-reporting banks
    threshold-based error status present
    Machine-check status 0x0000000000000004:
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0xf200004000000800 valid
      MCA error code:            0x0800
      Model specific error code: 0x0000
      Other information:         0x00000040
      Threshold-based status:    Undefined
      Status bits:
       Processor context corrupt
       Error enabled
       Uncorrected error
       Error overflow
    IA32_MC1_STATUS(0x405): 0x0000000000000000 invalid
    IA32_MC2_STATUS(0x409): 0x0000000000000000 invalid
    IA32_MC3_STATUS(0x40d): 0x0020000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000011 invalid
    IA32_MC5_STATUS(0x415): 0xf200241010040400 valid
      MCA error code:            0x0400
      Model specific error code: 0x1004
      Other information:         0x00002410
      Threshold-based status:    Undefined
      Status bits:
       Processor context corrupt
       Error enabled
       Uncorrected error
       Error overflow
    panic(cpu 0 caller 0x2cf3cc): "Machine Check at 0x00dfa4c8, trapno:0x12, err:0x0," "registers:\n" "CR0: 0x8001003b, CR2: 0x55cfe000, CR3: 0x2b84c000, CR4: 0x00000660\n" "EAX: 0x559edc20, EBX: 0x072db000, ECX: 0x00e0c428, EDX: 0x00000000\n" "ESP: 0x0010be00, EBP: 0x0010be68, ESI: 0x072d9000, EDI: 0x072d1280\n" "EFL: 0x00010006, EIP: 0x00dfa4c8\n"@/SourceCache/xnu/xnu-1699.32.7/osfmk/i386/trap_native.c:258
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x818d98 : 0x2203de (0x6b08cc 0x818db8 0x229fb0 0x0)
    0x818dc8 : 0x2cf3cc (0x6bde94 0x6bdfc8 0xdfa4c8 0x12)
    0x818f38 : 0x2cf409 (0x818f70 0xde 0x6bdfc8 0x1)
    0x818f58 : 0x2e6182 (0x818f70 0x0 0x0 0x0)
    0x10be68 : 0xdfa9a2 (0x72d9000 0x0 0x10bea8 0x22fb7f)
    0x10be88 : 0x666bb6 (0x72d9000 0x72d1280 0x75b2904 0x663d5e)
    0x10beb8 : 0x67cb5f (0x72d1280 0x0 0x7295080 0x0)
    0x10bef8 : 0x1ae3691 (0x72d1200 0x0 0x72d1200 0x0)
    0x10bf28 : 0x1b03351 (0x7277500 0x0 0x0 0x55)
    0x10bf48 : 0x1b0e7a3 (0x55 0x2d0d29 0x0 0x1313d70)
    0x10bf78 : 0x69ca2d (0x71c8680 0x0 0x71e3180 0x55)
    0x10bf98 : 0x2ceba4 (0x55 0x10eb710 0x4 0x0)
    0x10bfd8 : 0x2e570e (0x10eb710 0x2c5db0 0x0 0x2c5e0b)
    0x10eb808 : 0x527e2f (0x6c42c8 0x19 0x80cc82e 0x10eb868)
    0x10eb878 : 0x5286a9 (0x7513aa0 0x10eb8f0 0x743a004 0x0)
    0x10eb8d8 : 0x32b069 (0x10eb8f0 0x0 0x0 0x0)
    0x10eb918 : 0x322e68 (0x74fabc0 0x6c42c8 0x0 0x10eb978)
    0x10eb948 : 0x32920c (0x74fabc0 0x6c42c8 0x0 0x10eb978)
    0x10eb988 : 0x32c81b (0x804bf3c 0x10ebae0 0x804bf3c 0x10ebb28)
    0x10eb9b8 : 0x308afb (0x74fabc0 0x10ebae0 0x804bf3c 0x0)
    0x10ebc28 : 0x54d235 (0x72803e0 0x0 0x880 0x804bf3c)
    0x10ebc58 : 0x307d0e (0x73dbb04 0x72803e0 0x880 0x804bf3c)
    0x10ebc88 : 0x321fb2 (0x74fabc0 0x0 0x880 0x804bf3c)
    0x10ebca8 : 0x316802 (0x74fabc0 0x10ebd60 0x0 0x1)
    0x10ebdd8 : 0x317478 (0x5f607c0 0x1 0x0 0x0)
    0x10ebf78 : 0x5f3c2a (0x7564828 0x10846394 0x804be80 0x7f81cd0)
    0x10ebfc8 : 0x2e60a7 (0x10846390 0x0 0x2c7d1b 0x10846390)
          Kernel Extensions in backtrace:
             com.apple.driver.AppleACPIPlatform(1.5)[C5484D26-28D3-4DA8-B2C0-7A3EB8F38BD5]@0 x1b01000->0x1b56fff
                dependency: com.apple.iokit.IOACPIFamily(1.4)[5EC48FA0-6225-414F-ABAB-A898F91B7E15]@0xa8700 0
                dependency: com.apple.iokit.IOPCIFamily(2.7)[8087C029-833E-4B62-A8C3-2B074B4C55F7]@0xb3c000
             com.apple.driver.AppleAPIC(1.6)[5BEB4F30-F328-4086-9502-DE97ED5448F2]@0x1ae2000 ->0x1ae5fff
             com.apple.driver.AppleUSBEHCI(5.1)[607ED327-88BE-4ABF-A666-AD1D02B3D03E]@0xdf60 00->0xe15fff
                dependency: com.apple.iokit.IOUSBFamily(5.1.0)[ACF52DAA-24ED-4520-A3A1-4B4C3C53C8A5]@0xcae0 00
                dependency: com.apple.iokit.IOPCIFamily(2.7)[8087C029-833E-4B62-A8C3-2B074B4C55F7]@0xb3c000
    BSD process name corresponding to current thread: mds
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:26:45 PDT 2012; root:xnu-1699.32.7~1/RELEASE_I386
    Kernel UUID: 859B45FB-14BB-35ED-B823-08393C63E13B
    System model name: MacBook3,1 (Mac-F22788C8)
    System uptime in nanoseconds: 32336204274368
    last loaded kext at 206807220187: com.apple.filesystems.smbfs    1.7.2 (addr 0xaa8000, size 249856)
    last unloaded kext at 211045878088: com.apple.driver.USBCameraFirmwareLoader    1.1.0 (addr 0xdaf000, size 24576)
    loaded kexts:
    com.logmein.driver.LogMeInSoundDriver    1.0.0
    com.apple.filesystems.smbfs    1.7.2
    com.apple.driver.AudioAUUC    1.59
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.driver.AppleHDA    2.2.5a5
    com.apple.driver.AppleSMCPDRC    5.0.0d8
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleIntelGMAX3100    7.0.4
    com.apple.driver.AppleIntelGMAX3100FB    7.0.4
    com.apple.driver.SMCMotionSensor    3.0.2d6
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager    4.0.8f17
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AudioIPCDriver    1.2.3
    com.apple.driver.ApplePolicyControl    3.1.33
    com.apple.driver.AirPort.Atheros21    431.14.10
    com.apple.driver.AppleLPC    1.6.0
    com.apple.driver.ACPI_SMC_PlatformPlugin    5.0.0d8
    com.apple.driver.AppleBacklight    170.2.2
    com.apple.driver.AppleMCCSControl    1.0.33
    com.apple.driver.CSRUSBBluetoothHCIController    4.0.8f17
    com.apple.driver.AppleUSBTrackpad    227.6
    com.apple.driver.AppleUSBTCKeyEventDriver    227.6
    com.apple.driver.AppleUSBTCKeyboard    227.6
    com.apple.driver.AppleIRController    312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.iokit.SCSITaskUserClient    3.2.1
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.1.0
    com.apple.driver.AppleUSBHub    5.1.0
    com.apple.driver.AppleEFINVRAM    1.6.1
    com.apple.driver.AppleFWOHCI    4.9.0
    com.apple.driver.AppleHPET    1.7
    com.apple.driver.AppleAHCIPort    2.3.1
    com.apple.driver.AppleIntelPIIXATA    2.5.1
    com.apple.driver.AppleUSBEHCI    5.1.0
    com.apple.iokit.AppleYukon2    3.2.2b1
    com.apple.driver.AppleUSBUHCI    5.1.0
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleACPIButtons    1.5
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.5
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    195.0.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.4
    com.apple.security.TMSafetyNet    8
    com.apple.driver.AppleIntelCPUPowerManagement    195.0.0
    com.apple.kext.triggers    1.0
    com.apple.driver.DspFuncLib    2.2.5a5
    com.apple.iokit.IOSurface    80.0.2
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.iokit.IOAudioFamily    1.8.6fc18
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.iokit.IOFireWireIP    2.2.5
    com.apple.iokit.IO80211Family    420.3
    com.apple.driver.AppleHDAController    2.2.5a5
    com.apple.iokit.IOHDAFamily    2.2.5a5
    com.apple.driver.AppleGraphicsControl    3.1.33
    com.apple.driver.AppleSMC    3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy    5.0.0d8
    com.apple.driver.IOPlatformPluginFamily    5.1.1d6
    com.apple.driver.AppleBacklightExpert    1.0.4
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IONDRVSupport    2.3.4
    com.apple.iokit.IOGraphicsFamily    2.3.4
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.8f17
    com.apple.iokit.IOBluetoothFamily    4.0.8f17
    com.apple.driver.AppleUSBMergeNub    5.1.0
    com.apple.iokit.IOUSBHIDDriver    5.0.0
    com.apple.driver.AppleUSBComposite    5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.2.1
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOATAPIProtocolTransport    3.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.2.1
    com.apple.iokit.IOUSBUserClient    5.0.0
    com.apple.iokit.IOFireWireFamily    4.4.8
    com.apple.iokit.IOAHCIFamily    2.0.8
    com.apple.iokit.IOATAFamily    2.5.1
    com.apple.iokit.IONetworkingFamily    2.1
    com.apple.iokit.IOUSBFamily    5.1.0
    com.apple.driver.AppleEFIRuntime    1.6.1
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.8
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.driver.DiskImages    331.7
    com.apple.iokit.IOStorageFamily    1.7.2
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.5
    com.apple.iokit.IOPCIFamily    2.7
    com.apple.iokit.IOACPIFamily    1.4
    And here is an odd one from just the other day (this is the entire panic report when viewing it in Console):
    Thu Jan 31 18:37:05 2013
    Machine-check capabilities (cpu 1) 0x0000000000000806:
    family: 6 mPdaei: c(CPU10):5 snepresing: sive1pr0c smsori(rotodhie C:U did n14 a6know edge Intenrupts)tTLeB slate(0x1R
    Any thoughts??

    ....anyone have any ideas?

  • Booting freeze when starting setup virtual console

    Sometimes the computer will freeze when booting into
    Started setup virtual console
    Gotta to use the power button to shut down, normally it will boot successfully followingby.
    Before is ok, can't remember when this problem show up.
    Don't know where to go, please give me a hint.
    Thanks.
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.15.5-1-ARCH (nobody@var-lib-archbuild-testing-i686-tobias) (gcc version 4.9.0 20140604 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Jul 10 07:10:15 CEST 2014
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f3ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009f400-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000d2000-0x00000000000d3fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000376b0fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000376b1000-0x00000000376b6fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000376b7000-0x00000000377b9fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000377ba000-0x000000003780efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000003780f000-0x0000000037907fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000037908000-0x0000000037b0efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000037b0f000-0x0000000037b17fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000037b18000-0x0000000037b1efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000037b1f000-0x0000000037b62fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000037b63000-0x0000000037b9efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x0000000037b9f000-0x0000000037bdffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000037be0000-0x0000000037bfcfff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x0000000037bfd000-0x0000000037bfffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000037c00000-0x0000000037dfffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000038000000-0x000000003fffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed8ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] SMBIOS 2.5 present.
    [ 0.000000] DMI: LENOVO 2847A65/2847A65, BIOS 6JET85WW (1.43 ) 12/24/2010
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] e820: last_pfn = 0x37c00 max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-D3FFF write-protect
    [ 0.000000] D4000-DFFFF uncachable
    [ 0.000000] E0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] 1 base 038000000 mask FF8000000 uncachable
    [ 0.000000] 2 base 000000000 mask FC0000000 write-back
    [ 0.000000] 3 base 037E00000 mask FFFE00000 uncachable
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [mem 0x000f74c0-0x000f74cf] mapped at [c00f74c0]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x01bfffff]
    [ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x37000000-0x373fffff]
    [ 0.000000] [mem 0x37000000-0x373fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x30000000-0x36ffffff]
    [ 0.000000] [mem 0x30000000-0x36ffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x2fffffff]
    [ 0.000000] [mem 0x00100000-0x003fffff] page 4k
    [ 0.000000] [mem 0x00400000-0x2fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x37400000-0x376b0fff]
    [ 0.000000] [mem 0x37400000-0x376b0fff] page 4k
    [ 0.000000] BRK [0x0179e000, 0x0179efff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x376b7000-0x377b9fff]
    [ 0.000000] [mem 0x376b7000-0x377b9fff] page 4k
    [ 0.000000] RAMDISK: [mem 0x36ac0000-0x36dfcfff]
    [ 0.000000] ACPI: RSDP 0x000F7190 000024 (v04 PTLTD )
    [ 0.000000] ACPI: XSDT 0x37BF2BBD 000064 (v01 LENOVO TP-6J 00001430 LTP 00000000)
    [ 0.000000] ACPI: FACP 0x37BE4000 0000F4 (v03 LENOVO TP-6J 00001430 ALAN 00000001)
    [ 0.000000] ACPI: DSDT 0x37BE5000 00A14B (v02 LENOVO TP-6J 00001430 INTL 20050624)
    [ 0.000000] ACPI: FACS 0x37B9EFC0 000040
    [ 0.000000] ACPI: HPET 0x37BFCEFC 000038 (v01 LENOVO TP-6J 00001430 LOHR 0000005A)
    [ 0.000000] ACPI: MCFG 0x37BFCF34 00003C (v01 LENOVO TP-6J 00001430 LOHR 0000005A)
    [ 0.000000] ACPI: APIC 0x37BFCF70 000068 (v01 LENOVO TP-6J 00001430 LTP 00000000)
    [ 0.000000] ACPI: BOOT 0x37BFCFD8 000028 (v01 LENOVO TP-6J 00001430 LTP 00000001)
    [ 0.000000] ACPI: SSDT 0x37BE3000 000655 (v01 PmRef CpuPm 00003000 INTL 20050624)
    [ 0.000000] ACPI: SSDT 0x37BE2000 000259 (v01 PmRef Cpu0Tst 00003000 INTL 20050624)
    [ 0.000000] ACPI: SSDT 0x37BE1000 00020F (v01 PmRef ApTst 00003000 INTL 20050624)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 4MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377ba000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] BRK [0x0179f000, 0x0179ffff] PGTABLE
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] Normal [mem 0x01000000-0x377fdfff]
    [ 0.000000] HighMem [mem 0x377fe000-0x37bfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0x376b0fff]
    [ 0.000000] node 0: [mem 0x376b7000-0x377b9fff]
    [ 0.000000] node 0: [mem 0x3780f000-0x37907fff]
    [ 0.000000] node 0: [mem 0x37b0f000-0x37b17fff]
    [ 0.000000] node 0: [mem 0x37b1f000-0x37b62fff]
    [ 0.000000] node 0: [mem 0x37b9f000-0x37bdffff]
    [ 0.000000] node 0: [mem 0x37bfd000-0x37bfffff]
    [ 0.000000] On node 0 totalpages: 227548
    [ 0.000000] free_area_init_node: node 0, pgdat c1601e00, node_mem_map f6fb9020
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3998 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 223156 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 9 pages used for memmap
    [ 0.000000] HighMem zone: 394 pages, LIFO batch:0
    [ 0.000000] Using APIC driver default
    [ 0.000000] Reserving Intel graphics stolen memory at 0x38000000-0x3fffffff
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000d1fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000d2000-0x000d3fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000d4000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x376b1000-0x376b6fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x377ba000-0x3780efff]
    [ 0.000000] e820: [mem 0x40000000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 14 pages/cpu @f7798000 s33856 r0 d23488 u57344
    [ 0.000000] pcpu-alloc: s33856 r0 d23488 u57344 alloc=14*4096
    [ 0.000000] pcpu-alloc: [0] 0 [0] 1
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 225772
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=3bfa8024-2f62-4818-9393-5874bfc69f25 rw
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Initializing CPU#0
    [ 0.000000] xsave: enabled xstate_bv 0x3, cntxt size 0x240
    [ 0.000000] allocated 1826808 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (000377fe:00037c00)
    [ 0.000000] Initializing Movable for node 0 (00000000:00000000)
    [ 0.000000] Memory: 889132K/910192K available (4447K kernel code, 481K rwdata, 1288K rodata, 564K init, 956K bss, 21060K reserved, 1576K highmem)
    [ 0.000000] virtual kernel memory layout:
    fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc1616000 - 0xc16a3000 ( 564 kB)
    .data : 0xc14582aa - 0xc1614400 (1776 kB)
    .text : 0xc1000000 - 0xc14582aa (4448 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
    [ 0.000000] NR_IRQS:2304 nr_irqs:512 16
    [ 0.000000] CPU 0 irqstacks, hard=f6408000 soft=f640a000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 2094.872 MHz processor
    [ 0.003345] Calibrating delay loop (skipped), value calculated using timer frequency.. 4191.31 BogoMIPS (lpj=6982906)
    [ 0.003348] pid_max: default: 32768 minimum: 301
    [ 0.003355] ACPI: Core revision 20140214
    [ 0.019690] ACPI: All ACPI Tables successfully acquired
    [ 0.020050] Security Framework initialized
    [ 0.020059] Yama: becoming mindful.
    [ 0.020075] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.020078] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.020299] Initializing cgroup subsys memory
    [ 0.020305] Initializing cgroup subsys devices
    [ 0.020307] Initializing cgroup subsys freezer
    [ 0.020309] Initializing cgroup subsys net_cls
    [ 0.020313] Initializing cgroup subsys blkio
    [ 0.020338] CPU: Physical Processor ID: 0
    [ 0.020339] CPU: Processor Core ID: 0
    [ 0.020342] mce: CPU supports 6 MCE banks
    [ 0.020351] CPU0: Thermal monitoring enabled (TM1)
    [ 0.020359] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
    tlb_flushall_shift: -1
    [ 0.020459] Freeing SMP alternatives memory: 16K (c16a3000 - c16a7000)
    [ 0.021230] ftrace: allocating 19105 entries in 38 pages
    [ 0.026774] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.027205] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.061993] smpboot: CPU0: Intel Celeron(R) Dual-Core CPU T3500 @ 2.10GHz (fam: 06, model: 17, stepping: 0a)
    [ 0.063333] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.063333] ... version: 2
    [ 0.063333] ... bit width: 40
    [ 0.063333] ... generic registers: 2
    [ 0.063333] ... value mask: 000000ffffffffff
    [ 0.063333] ... max period: 000000007fffffff
    [ 0.063333] ... fixed-purpose events: 3
    [ 0.063333] ... event mask: 0000000700000003
    [ 0.076738] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.083404] CPU 1 irqstacks, hard=f6516000 soft=f6518000
    [ 0.083406] x86: Booting SMP configuration:
    [ 0.083408] .... node #0, CPUs: #1
    [ 0.006666] Initializing CPU#1
    [ 0.096574] x86: Booted up 1 node, 2 CPUs
    [ 0.096579] smpboot: Total of 2 processors activated (8382.63 BogoMIPS)
    [ 0.096809] devtmpfs: initialized
    [ 0.096921] PM: Registering ACPI NVS region [mem 0x37b63000-0x37b9efff] (245760 bytes)
    [ 0.097916] pinctrl core: initialized pinctrl subsystem
    [ 0.097971] RTC time: 21:12:51, date: 07/24/14
    [ 0.098030] NET: Registered protocol family 16
    [ 0.098149] cpuidle: using governor ladder
    [ 0.098151] cpuidle: using governor menu
    [ 0.098199] ACPI: bus type PCI registered
    [ 0.098202] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.098297] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.098300] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.098302] PCI: Using MMCONFIG for extended config space
    [ 0.098303] PCI: Using configuration type 1 for base access
    [ 0.098392] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.098393] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.098395] mtrr: corrected configuration.
    [ 0.100073] ACPI: Added _OSI(Module Device)
    [ 0.100073] ACPI: Added _OSI(Processor Device)
    [ 0.100073] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.100073] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.107026] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.107995] ACPI: SSDT 0x37B18620 000549 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.108621] ACPI: Dynamic OEM Table Load:
    [ 0.108624] ACPI: SSDT 0x00000000 000549 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.116947] ACPI: SSDT 0x37B19F20 00008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.117393] ACPI: Dynamic OEM Table Load:
    [ 0.117395] ACPI: SSDT 0x00000000 00008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.130189] ACPI: Interpreter enabled
    [ 0.130202] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140214/hwxface-580)
    [ 0.130208] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140214/hwxface-580)
    [ 0.130226] ACPI: (supports S0 S3 S4 S5)
    [ 0.130228] ACPI: Using IOAPIC for interrupt routing
    [ 0.130267] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.144307] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.144315] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.144322] acpi PNP0A08:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    [ 0.145146] PCI host bridge to bus 0000:00
    [ 0.145151] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.145153] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.145156] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.145158] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.145161] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.145163] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.145166] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.145168] pci_bus 0000:00: root bus resource [mem 0x40000000-0xfebfffff]
    [ 0.145181] pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
    [ 0.145206] DMAR: Forcing write-buffer flush capability
    [ 0.145208] DMAR: Disabling IOMMU for graphics on this chipset
    [ 0.145311] pci 0000:00:02.0: [8086:2a42] type 00 class 0x030000
    [ 0.145327] pci 0000:00:02.0: reg 0x10: [mem 0xf2400000-0xf27fffff 64bit]
    [ 0.145336] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.145343] pci 0000:00:02.0: reg 0x20: [io 0x1800-0x1807]
    [ 0.145462] pci 0000:00:02.1: [8086:2a43] type 00 class 0x038000
    [ 0.145475] pci 0000:00:02.1: reg 0x10: [mem 0xf2100000-0xf21fffff 64bit]
    [ 0.145642] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    [ 0.145703] pci 0000:00:1a.0: reg 0x20: [io 0x1820-0x183f]
    [ 0.145829] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.145893] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    [ 0.145953] pci 0000:00:1a.1: reg 0x20: [io 0x1840-0x185f]
    [ 0.146079] pci 0000:00:1a.1: System wakeup disabled by ACPI
    [ 0.146141] pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
    [ 0.146201] pci 0000:00:1a.2: reg 0x20: [io 0x1860-0x187f]
    [ 0.146201] pci 0000:00:1a.2: System wakeup disabled by ACPI
    [ 0.146201] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    [ 0.146201] pci 0000:00:1a.7: reg 0x10: [mem 0xf2a04000-0xf2a043ff]
    [ 0.146201] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.146201] pci 0000:00:1a.7: System wakeup disabled by ACPI
    [ 0.146201] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
    [ 0.146201] pci 0000:00:1b.0: reg 0x10: [mem 0xf2a00000-0xf2a03fff 64bit]
    [ 0.146201] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.146201] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.146201] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    [ 0.146201] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.146201] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.146201] pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
    [ 0.146201] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.146201] pci 0000:00:1c.1: System wakeup disabled by ACPI
    [ 0.146201] pci 0000:00:1c.2: [8086:2944] type 01 class 0x060400
    [ 0.146201] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.146201] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.146201] pci 0000:00:1c.3: [8086:2946] type 01 class 0x060400
    [ 0.146201] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.146201] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.146201] pci 0000:00:1c.4: [8086:2948] type 01 class 0x060400
    [ 0.146201] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.146201] pci 0000:00:1c.4: System wakeup disabled by ACPI
    [ 0.146201] pci 0000:00:1c.5: [8086:294a] type 01 class 0x060400
    [ 0.146201] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.146201] pci 0000:00:1c.5: System wakeup disabled by ACPI
    [ 0.146201] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    [ 0.146201] pci 0000:00:1d.0: reg 0x20: [io 0x1880-0x189f]
    [ 0.146201] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.146201] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    [ 0.146201] pci 0000:00:1d.1: reg 0x20: [io 0x18a0-0x18bf]
    [ 0.146201] pci 0000:00:1d.1: System wakeup disabled by ACPI
    [ 0.146201] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    [ 0.146201] pci 0000:00:1d.2: reg 0x20: [io 0x18c0-0x18df]
    [ 0.146201] pci 0000:00:1d.2: System wakeup disabled by ACPI
    [ 0.146266] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    [ 0.146294] pci 0000:00:1d.7: reg 0x10: [mem 0xf2a04400-0xf2a047ff]
    [ 0.146416] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.146489] pci 0000:00:1d.7: System wakeup disabled by ACPI
    [ 0.146551] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.146682] pci 0000:00:1e.0: System wakeup disabled by ACPI
    [ 0.146745] pci 0000:00:1f.0: [8086:2919] type 00 class 0x060100
    [ 0.146992] pci 0000:00:1f.2: [8086:2928] type 00 class 0x01018a
    [ 0.147016] pci 0000:00:1f.2: reg 0x10: [io 0x0000-0x0007]
    [ 0.147028] pci 0000:00:1f.2: reg 0x14: [io 0x0000-0x0003]
    [ 0.147040] pci 0000:00:1f.2: reg 0x18: [io 0x0000-0x0007]
    [ 0.147053] pci 0000:00:1f.2: reg 0x1c: [io 0x0000-0x0003]
    [ 0.147065] pci 0000:00:1f.2: reg 0x20: [io 0x18e0-0x18ef]
    [ 0.147077] pci 0000:00:1f.2: reg 0x24: [io 0x1810-0x181f]
    [ 0.147093] pci 0000:00:1f.2: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
    [ 0.147095] pci 0000:00:1f.2: legacy IDE quirk: reg 0x14: [io 0x03f6]
    [ 0.147098] pci 0000:00:1f.2: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
    [ 0.147100] pci 0000:00:1f.2: legacy IDE quirk: reg 0x1c: [io 0x0376]
    [ 0.147232] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
    [ 0.147255] pci 0000:00:1f.3: reg 0x10: [mem 0x00000000-0x000000ff 64bit]
    [ 0.147286] pci 0000:00:1f.3: reg 0x20: [io 0x1c00-0x1c1f]
    [ 0.147516] pci 0000:02:00.0: [197b:2382] type 00 class 0x088000
    [ 0.147544] pci 0000:02:00.0: reg 0x10: [mem 0xf2300000-0xf23000ff]
    [ 0.147763] pci 0000:02:00.0: System wakeup disabled by ACPI
    [ 0.147840] pci 0000:02:00.2: [197b:2381] type 00 class 0x080501
    [ 0.147866] pci 0000:02:00.2: reg 0x10: [mem 0xf2300400-0xf23004ff]
    [ 0.148142] pci 0000:02:00.3: [197b:2383] type 00 class 0x088000
    [ 0.148168] pci 0000:02:00.3: reg 0x10: [mem 0xf2300800-0xf23008ff]
    [ 0.148441] pci 0000:02:00.4: [197b:2384] type 00 class 0x088000
    [ 0.148466] pci 0000:02:00.4: reg 0x10: [mem 0xf2300c00-0xf2300cff]
    [ 0.156695] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.156703] pci 0000:00:1c.0: bridge window [mem 0xf2300000-0xf23fffff]
    [ 0.156802] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.156907] pci 0000:00:1c.2: PCI bridge to [bus 04]
    [ 0.157034] pci 0000:05:00.0: [10ec:8172] type 00 class 0x028000
    [ 0.157059] pci 0000:05:00.0: reg 0x10: [io 0x2000-0x20ff]
    [ 0.157076] pci 0000:05:00.0: reg 0x14: [mem 0xf2200000-0xf2203fff]
    [ 0.157243] pci 0000:05:00.0: supports D1 D2
    [ 0.157245] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.157285] pci 0000:05:00.0: System wakeup disabled by ACPI
    [ 0.166686] pci 0000:00:1c.3: PCI bridge to [bus 05]
    [ 0.166691] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
    [ 0.166697] pci 0000:00:1c.3: bridge window [mem 0xf2200000-0xf22fffff]
    [ 0.166813] acpiphp: Slot [1] registered
    [ 0.166820] pci 0000:00:1c.4: PCI bridge to [bus 06-07]
    [ 0.166826] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.166831] pci 0000:00:1c.4: bridge window [mem 0xf4000000-0xf5ffffff]
    [ 0.166839] pci 0000:00:1c.4: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref]
    [ 0.167015] pci 0000:08:00.0: [10ec:8136] type 00 class 0x020000
    [ 0.167081] pci 0000:08:00.0: reg 0x10: [io 0x4000-0x40ff]
    [ 0.167195] pci 0000:08:00.0: reg 0x18: [mem 0xf2010000-0xf2010fff 64bit pref]
    [ 0.167267] pci 0000:08:00.0: reg 0x20: [mem 0xf2000000-0xf200ffff 64bit pref]
    [ 0.167309] pci 0000:08:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
    [ 0.167631] pci 0000:08:00.0: supports D1 D2
    [ 0.167633] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.167765] pci 0000:08:00.0: System wakeup disabled by ACPI
    [ 0.167881] pci 0000:00:1c.5: PCI bridge to [bus 08]
    [ 0.167886] pci 0000:00:1c.5: bridge window [io 0x4000-0x4fff]
    [ 0.167897] pci 0000:00:1c.5: bridge window [mem 0xf2000000-0xf20fffff 64bit pref]
    [ 0.168016] pci 0000:00:1e.0: PCI bridge to [bus 09] (subtractive decode)
    [ 0.168030] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.168033] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.168036] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.168038] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.168041] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.168043] pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.168045] pci 0000:00:1e.0: bridge window [mem 0x40000000-0xfebfffff] (subtractive decode)
    [ 0.168116] pci_bus 0000:00: on NUMA node 0
    [ 0.168358] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 *10 12 14 15)
    [ 0.168428] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    [ 0.168494] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 *10 12 14 15)
    [ 0.168563] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.168628] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 0.168695] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.168761] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 *10 12 14 15)
    [ 0.168827] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.173479] ACPI: Enabled 4 GPEs in block 00 to 3F
    [ 0.173591] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.173669] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.173669] vgaarb: loaded
    [ 0.173669] vgaarb: bridge control possible 0000:00:02.0
    [ 0.173669] PCI: Using ACPI for IRQ routing
    [ 0.185061] PCI: pci_cache_line_size set to 64 bytes
    [ 0.185173] e820: reserve RAM buffer [mem 0x0009f400-0x0009ffff]
    [ 0.185176] e820: reserve RAM buffer [mem 0x376b1000-0x37ffffff]
    [ 0.185179] e820: reserve RAM buffer [mem 0x377ba000-0x37ffffff]
    [ 0.185182] e820: reserve RAM buffer [mem 0x37908000-0x37ffffff]
    [ 0.185184] e820: reserve RAM buffer [mem 0x37b18000-0x37ffffff]
    [ 0.185187] e820: reserve RAM buffer [mem 0x37b63000-0x37ffffff]
    [ 0.185189] e820: reserve RAM buffer [mem 0x37be0000-0x37ffffff]
    [ 0.185191] e820: reserve RAM buffer [mem 0x37c00000-0x37ffffff]
    [ 0.185330] NetLabel: Initializing
    [ 0.185332] NetLabel: domain hash size = 128
    [ 0.185334] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.185348] NetLabel: unlabeled traffic allowed by default
    [ 0.185378] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.185385] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.185390] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.186692] Switched to clocksource hpet
    [ 0.194447] pnp: PnP ACPI init
    [ 0.194476] ACPI: bus type PNP registered
    [ 0.194565] pnp 00:00: [dma 4]
    [ 0.194604] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.194647] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.194818] system 00:02: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.194823] system 00:02: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 0.194877] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.194964] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 0.194967] system 00:04: [io 0x0480-0x048f] has been reserved
    [ 0.194970] system 00:04: [io 0xffff] has been reserved
    [ 0.194972] system 00:04: [io 0xffff] has been reserved
    [ 0.194975] system 00:04: [io 0x0400-0x047f] could not be reserved
    [ 0.194978] system 00:04: [io 0x1180-0x11ff] has been reserved
    [ 0.194981] system 00:04: [io 0x1600-0x16fe] has been reserved
    [ 0.194983] system 00:04: [io 0xfe00] has been reserved
    [ 0.194986] system 00:04: [io 0x0700-0x070f] has been reserved
    [ 0.194990] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.195039] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.195106] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.195153] pnp 00:07: Plug and Play ACPI device, IDs LEN0017 PNP0f13 (active)
    [ 0.195390] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.195393] system 00:08: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 0.195396] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.195399] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.195402] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.195405] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.195407] system 00:08: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.195411] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.195901] pnp: PnP ACPI: found 9 devices
    [ 0.195903] ACPI: bus type PNP unregistered
    [ 0.233524] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
    [ 0.233530] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 0.233542] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
    [ 0.233546] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
    [ 0.233549] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000
    [ 0.233561] pci 0000:00:1c.2: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000
    [ 0.233564] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000
    [ 0.233567] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000
    [ 0.233579] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 05] add_size 200000
    [ 0.233599] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x001fffff] to [bus 08] add_size 400000
    [ 0.233618] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.233621] pci 0000:00:1c.1: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.233624] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.233627] pci 0000:00:1c.2: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.233630] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.233632] pci 0000:00:1c.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.233635] pci 0000:00:1c.5: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 400000
    [ 0.233638] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.233641] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.233643] pci 0000:00:1c.2: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.233651] pci 0000:00:1c.0: BAR 15: assigned [mem 0x40000000-0x401fffff 64bit pref]
    [ 0.233656] pci 0000:00:1c.1: BAR 14: assigned [mem 0x40200000-0x403fffff]
    [ 0.233660] pci 0000:00:1c.1: BAR 15: assigned [mem 0x40400000-0x405fffff 64bit pref]
    [ 0.233664] pci 0000:00:1c.2: BAR 14: assigned [mem 0x40600000-0x407fffff]
    [ 0.233668] pci 0000:00:1c.2: BAR 15: assigned [mem 0x40800000-0x409fffff 64bit pref]
    [ 0.233672] pci 0000:00:1c.3: BAR 15: assigned [mem 0x40a00000-0x40bfffff 64bit pref]
    [ 0.233676] pci 0000:00:1c.5: BAR 14: assigned [mem 0x40c00000-0x410fffff]
    [ 0.233680] pci 0000:00:1c.0: BAR 13: assigned [io 0x5000-0x5fff]
    [ 0.233683] pci 0000:00:1c.1: BAR 13: assigned [io 0x6000-0x6fff]
    [ 0.233687] pci 0000:00:1c.2: BAR 13: assigned [io 0x7000-0x7fff]
    [ 0.233691] pci 0000:00:1f.3: BAR 0: assigned [mem 0x41100000-0x411000ff 64bit]
    [ 0.233705] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.233709] pci 0000:00:1c.0: bridge window [io 0x5000-0x5fff]
    [ 0.233716] pci 0000:00:1c.0: bridge window [mem 0xf2300000-0xf23fffff]
    [ 0.233721] pci 0000:00:1c.0: bridge window [mem 0x40000000-0x401fffff 64bit pref]
    [ 0.233729] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.233732] pci 0000:00:1c.1: bridge window [io 0x6000-0x6fff]
    [ 0.233739] pci 0000:00:1c.1: bridge window [mem 0x40200000-0x403fffff]
    [ 0.233744] pci 0000:00:1c.1: bridge window [mem 0x40400000-0x405fffff 64bit pref]
    [ 0.233752] pci 0000:00:1c.2: PCI bridge to [bus 04]
    [ 0.233756] pci 0000:00:1c.2: bridge window [io 0x7000-0x7fff]
    [ 0.233763] pci 0000:00:1c.2: bridge window [mem 0x40600000-0x407fffff]
    [ 0.233768] pci 0000:00:1c.2: bridge window [mem 0x40800000-0x409fffff 64bit pref]
    [ 0.233776] pci 0000:00:1c.3: PCI bridge to [bus 05]
    [ 0.233779] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
    [ 0.233786] pci 0000:00:1c.3: bridge window [mem 0xf2200000-0xf22fffff]
    [ 0.233791] pci 0000:00:1c.3: bridge window [mem 0x40a00000-0x40bfffff 64bit pref]
    [ 0.233799] pci 0000:00:1c.4: PCI bridge to [bus 06-07]
    [ 0.233803] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.233809] pci 0000:00:1c.4: bridge window [mem 0xf4000000-0xf5ffffff]
    [ 0.233814] pci 0000:00:1c.4: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref]
    [ 0.233823] pci 0000:08:00.0: BAR 6: assigned [mem 0xf2020000-0xf203ffff pref]
    [ 0.233826] pci 0000:00:1c.5: PCI bridge to [bus 08]
    [ 0.233830] pci 0000:00:1c.5: bridge window [io 0x4000-0x4fff]
    [ 0.233836] pci 0000:00:1c.5: bridge window [mem 0x40c00000-0x410fffff]
    [ 0.233841] pci 0000:00:1c.5: bridge window [mem 0xf2000000-0xf20fffff 64bit pref]
    [ 0.233849] pci 0000:00:1e.0: PCI bridge to [bus 09]
    [ 0.233864] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.233867] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.233870] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.233872] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.233874] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
    [ 0.233877] pci_bus 0000:00: resource 9 [mem 0x000dc000-0x000dffff]
    [ 0.233879] pci_bus 0000:00: resource 10 [mem 0x40000000-0xfebfffff]
    [ 0.233882] pci_bus 0000:02: resource 0 [io 0x5000-0x5fff]
    [ 0.233884] pci_bus 0000:02: resource 1 [mem 0xf2300000-0xf23fffff]
    [ 0.233887] pci_bus 0000:02: resource 2 [mem 0x40000000-0x401fffff 64bit pref]
    [ 0.233890] pci_bus 0000:03: resource 0 [io 0x6000-0x6fff]
    [ 0.233892] pci_bus 0000:03: resource 1 [mem 0x40200000-0x403fffff]
    [ 0.233895] pci_bus 0000:03: resource 2 [mem 0x40400000-0x405fffff 64bit pref]
    [ 0.233897] pci_bus 0000:04: resource 0 [io 0x7000-0x7fff]
    [ 0.233900] pci_bus 0000:04: resource 1 [mem 0x40600000-0x407fffff]
    [ 0.233902] pci_bus 0000:04: resource 2 [mem 0x40800000-0x409fffff 64bit pref]
    [ 0.233905] pci_bus 0000:05: resource 0 [io 0x2000-0x2fff]
    [ 0.233907] pci_bus 0000:05: resource 1 [mem 0xf2200000-0xf22fffff]
    [ 0.233910] pci_bus 0000:05: resource 2 [mem 0x40a00000-0x40bfffff 64bit pref]
    [ 0.233912] pci_bus 0000:06: resource 0 [io 0x3000-0x3fff]
    [ 0.233915] pci_bus 0000:06: resource 1 [mem 0xf4000000-0xf5ffffff]
    [ 0.233917] pci_bus 0000:06: resource 2 [mem 0xf0000000-0xf1ffffff 64bit pref]
    [ 0.233920] pci_bus 0000:08: resource 0 [io 0x4000-0x4fff]
    [ 0.233922] pci_bus 0000:08: resource 1 [mem 0x40c00000-0x410fffff]
    [ 0.233924] pci_bus 0000:08: resource 2 [mem 0xf2000000-0xf20fffff 64bit pref]
    [ 0.233927] pci_bus 0000:09: resource 4 [io 0x0000-0x0cf7]
    [ 0.233929] pci_bus 0000:09: resource 5 [io 0x0d00-0xffff]
    [ 0.233932] pci_bus 0000:09: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.233934] pci_bus 0000:09: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.233937] pci_bus 0000:09: resource 8 [mem 0x000d8000-0x000dbfff]
    [ 0.233939] pci_bus 0000:09: resource 9 [mem 0x000dc000-0x000dffff]
    [ 0.233941] pci_bus 0000:09: resource 10 [mem 0x40000000-0xfebfffff]
    [ 0.233974] NET: Registered protocol family 2
    [ 0.234147] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [ 0.234165] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.234196] TCP: Hash tables configured (established 8192 bind 8192)
    [ 0.234229] TCP: reno registered
    [ 0.234232] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.234241] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.234288] NET: Registered protocol family 1
    [ 0.234306] pci 0000:00:02.0: Boot video device
    [ 0.247385] PCI: CLS 64 bytes, default 64
    [ 0.247444] Unpacking initramfs...
    [ 0.327321] Freeing initrd memory: 3316K (f6ac0000 - f6dfd000)
    [ 0.327360] Simple Boot Flag at 0x36 set to 0x1
    [ 0.327537] apm: BIOS not found.
    [ 0.327589] Scanning for low memory corruption every 60 seconds
    [ 0.328006] futex hash table entries: 512 (order: 3, 32768 bytes)
    [ 0.342512] bounce pool size: 64 pages
    [ 0.342526] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.344771] zbud: loaded
    [ 0.344889] VFS: Disk quotas dquot_6.5.2
    [ 0.344943] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.345132] msgmni has been set to 1740
    [ 0.345203] Key type big_key registered
    [ 0.345390] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.345431] io scheduler noop registered
    [ 0.345433] io scheduler deadline registered
    [ 0.345477] io scheduler cfq registered (default)
    [ 0.345722] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.345914] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    [ 0.346095] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X
    [ 0.346276] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X
    [ 0.346459] pcieport 0000:00:1c.4: irq 44 for MSI/MSI-X
    [ 0.346643] pcieport 0000:00:1c.5: irq 45 for MSI/MSI-X
    [ 0.346801] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.346826] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.346866] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.346868] vesafb: scrolling: redraw
    [ 0.346870] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.347265] vesafb: framebuffer at 0xd0000000, mapped to 0xf8080000, using 3072k, total 3072k
    [ 0.371347] Console: switching to colour frame buffer device 128x48
    [ 0.395282] fb0: VESA VGA frame buffer device
    [ 0.395302] intel_idle: does not run on family 6 model 23
    [ 0.395336] GHES: HEST is not enabled!
    [ 0.395353] isapnp: Scanning for PnP cards...
    [ 0.708652] isapnp: No Plug & Play device found
    [ 0.708714] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.709479] rtc_cmos 00:05: RTC can wake from S4
    [ 0.709659] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.709696] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.709734] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.709873] TCP: cubic registered
    [ 0.710038] NET: Registered protocol family 10
    [ 0.710291] NET: Registered protocol family 17
    [ 0.710470] Using IPI No-Shortcut mode
    [ 0.710614] registered taskstats version 1
    [ 0.711361] Magic number: 6:207:248
    [ 0.711441] rtc_cmos 00:05: setting system clock to 2014-07-24 21:12:51 UTC (1406236371)
    [ 0.711573] PM: Hibernation image not present or could not be loaded.
    [ 0.711816] Freeing unused kernel memory: 564K (c1616000 - c16a3000)
    [ 0.711835] Write protecting the kernel text: 4452k
    [ 0.711865] Write protecting the kernel read-only data: 1292k
    [ 0.720349] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 0.722097] systemd-udevd[47]: starting version 215
    [ 0.747046] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.754102] ACPI: bus type USB registered
    [ 0.754142] usbcore: registered new interface driver usbfs
    [ 0.754158] usbcore: registered new interface driver hub
    [ 0.757660] usbcore: registered new device driver usb
    [ 0.757853] sdhci: Secure Digital Host Controller Interface driver
    [ 0.757856] sdhci: Copyright(c) Pierre Ossman
    [ 0.758255] sdhci-pci 0000:02:00.0: SDHCI controller found [197b:2382] (rev 20)
    [ 0.758310] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.758388] mmc0: no vqmmc regulator found
    [ 0.758390] mmc0: no vmmc regulator found
    [ 0.758524] mmc0: SDHCI controller on PCI [0000:02:00.0] using DMA
    [ 0.758563] sdhci-pci 0000:02:00.2: SDHCI controller found [197b:2381] (rev 20)
    [ 0.758628] sdhci-pci 0000:02:00.2: Refusing to bind to secondary interface.
    [ 0.758728] uhci_hcd: USB Universal Host Controller Interface driver
    [ 0.758864] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 0.758874] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.758884] uhci_hcd 0000:00:1a.0: detected 2 ports
    [ 0.758909] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001820
    [ 0.759248] ehci-pci: EHCI PCI platform driver
    [ 0.760108] hub 1-0:1.0: USB hub found
    [ 0.760122] hub 1-0:1.0: 2 ports detected
    [ 0.760528] ehci-pci 0000:00:1a.7: EHCI Host Controller
    [ 0.760536] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 2
    [ 0.760554] ehci-pci 0000:00:1a.7: debug port 1
    [ 0.760989] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.764322] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.764375] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.764416] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.764455] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.764469] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    [ 0.764487] ehci-pci 0000:00:1a.7: irq 19, io mem 0xf2a04000
    [ 0.764496] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.769729] SCSI subsystem initialized
    [ 0.771540] libata version 3.00 loaded.
    [ 0.773372] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 0.773646] hub 2-0:1.0: USB hub found
    [ 0.773657] hub 2-0:1.0: 6 ports detected
    [ 0.796797] hub 1-0:1.0: USB hub found
    [ 0.796811] hub 1-0:1.0: 2 ports detected
    [ 0.797077] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 0.797086] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 3
    [ 0.797104] ehci-pci 0000:00:1d.7: debug port 1
    [ 0.801001] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    [ 0.801026] ehci-pci 0000:00:1d.7: irq 23, io mem 0xf2a04400
    [ 0.810017] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 0.810266] hub 3-0:1.0: USB hub found
    [ 0.810277] hub 3-0:1.0: 6 ports detected
    [ 0.810637] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 0.810645] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    [ 0.810654] uhci_hcd 0000:00:1a.1: detected 2 ports
    [ 0.810690] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840
    [ 0.810912] hub 4-0:1.0: USB hub found
    [ 0.810922] hub 4-0:1.0: 2 ports detected
    [ 0.811160] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 0.811169] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    [ 0.811178] uhci_hcd 0000:00:1a.2: detected 2 ports
    [ 0.811202] uhci_hcd 0000:00:1a.2: irq 19, io base 0x00001860
    [ 0.811580] hub 5-0:1.0: USB hub found
    [ 0.811590] hub 5-0:1.0: 2 ports detected
    [ 0.811840] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 0.811847] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    [ 0.811857] uhci_hcd 0000:00:1d.0: detected 2 ports
    [ 0.811879] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001880
    [ 0.812130] hub 6-0:1.0: USB hub found
    [ 0.812140] hub 6-0:1.0: 2 ports detected
    [ 0.812412] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 0.812422] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 0.812431] uhci_hcd 0000:00:1d.1: detected 2 ports
    [ 0.812458] uhci_hcd 0000:00:1d.1: irq 19, io base 0x000018a0
    [ 0.812718] hub 7-0:1.0: USB hub found
    [ 0.812728] hub 7-0:1.0: 2 ports detected
    [ 0.813015] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 0.813023] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 0.813033] uhci_hcd 0000:00:1d.2: detected 2 ports
    [ 0.813072] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018c0
    [ 0.813371] hub 8-0:1.0: USB hub found
    [ 0.813381] hub 8-0:1.0: 2 ports detected
    [ 0.813569] ata_piix 0000:00:1f.2: version 2.13
    [ 0.813680] ata_piix 0000:00:1f.2: MAP [ P0 -- P1 -- ]
    [ 0.816969] scsi0 : ata_piix
    [ 0.817145] scsi1 : ata_piix
    [ 0.817232] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0x18e0 irq 14
    [ 0.817238] ata2: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0x18e8 irq 15
    [ 0.842971] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.116709] usb 3-6: new high-speed USB device number 2 using ehci-pci
    [ 1.290069] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.290196] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.297007] ata2.00: ATAPI: MATSHITADVD-RAM UJ8A0A, SB31, max UDMA/100
    [ 1.297157] ata1.00: ATA-8: WDC WD2500BEVT-08A23T1, 02.01A02, max UDMA/133
    [ 1.297160] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 1.310274] ata2.00: configured for UDMA/100
    [ 1.310518] ata1.00: configured for UDMA/133
    [ 1.310653] scsi 0:0:0:0: Direct-Access ATA WDC WD2500BEVT-0 02.0 PQ: 0 ANSI: 5
    [ 1.314042] scsi 1:0:0:0: CD-ROM MATSHITA DVD-RAM UJ8A0A SB31 PQ: 0 ANSI: 5
    [ 1.330035] tsc: Refined TSC clocksource calibration: 2094.749 MHz
    [ 1.330632] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    [ 1.330736] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.330740] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.330778] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.339509] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.339512] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.339697] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.410766] sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
    [ 1.411402] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.330087] Switched to clocksource tsc
    [ 2.977672] random: nonblocking pool is initialized
    [ 4.813882] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.660514] systemd[1]: systemd 215 running in system mode. (+PAM -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ +SECCOMP -APPARMOR)
    [ 5.660690] systemd[1]: Detected architecture 'x86'.
    [ 5.713519] systemd[1]: Set hostname to <Thinkpad-SL510>.
    [ 7.304701] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 7.304780] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 7.304796] systemd[1]: Starting Remote File Systems.
    [ 7.305131] systemd[1]: Reached target Remote File Systems.
    [ 7.305165] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 7.305725] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 7.305745] systemd[1]: Starting Encrypted Volumes.
    [ 7.306028] systemd[1]: Reached target Encrypted Volumes.
    [ 7.306050] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 7.306094] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 7.306107] systemd[1]: Starting Paths.
    [ 7.306343] systemd[1]: Reached target Paths.
    [ 7.306360] systemd[1]: Expecting device dev-disk-by\x2duuid-0da676d3\x2de00d\x2d4408\x2da0e4\x2d61af4ccfed22.device...
    [ 7.306889] systemd[1]: Expecting device dev-disk-by\x2duuid-37e41bc7\x2daf4c\x2d4c7f\x2d97ff\x2decc785cc6263.device...
    [ 7.307389] systemd[1]: Expecting device dev-disk-by\x2duuid-6692aca0\x2d5948\x2d4835\x2dadb5\x2d51941a76128f.device...
    [ 7.307887] systemd[1]: Expecting device dev-disk-by\x2duuid-8829a0cf\x2da620\x2d438d\x2d8d1a\x2de386af97280f.device...
    [ 7.308384] systemd[1]: Starting Root Slice.
    [ 7.315232] systemd[1]: Created slice Root Slice.
    [ 7.315253] systemd[1]: Starting User and Session Slice.
    [ 7.315767] systemd[1]: Created slice User and Session Slice.
    [ 7.315784] systemd[1]: Starting Delayed Shutdown Socket.
    [ 7.316114] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 7.316130] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 7.316519] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 7.316536] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 7.316926] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 7.316943] systemd[1]: Starting Journal Socket (/dev/log).
    [ 7.317282] systemd[1]: Listening on Journal Socket (/dev/log).
    [ 7.317297] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 7.317631] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 7.317651] systemd[1]: Starting udev Kernel Socket.
    [ 7.317945] systemd[1]: Listening on udev Kernel Socket.
    [ 7.317963] systemd[1]: Starting udev Control Socket.
    [ 7.318263] systemd[1]: Listening on udev Control Socket.
    [ 7.318284] systemd[1]: Starting Journal Socket.
    [ 7.318577] systemd[1]: Listening on Journal Socket.
    [ 7.318611] systemd[1]: Starting System Slice.
    [ 7.319093] systemd[1]: Created slice System Slice.
    [ 7.319121] systemd[1]: Started File System Check on Root Device.
    [ 7.319134] systemd[1]: Starting system-systemd\x2dfsck.slice.
    [ 7.319690] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [ 7.346175] systemd[1]: Mounting Temporary Directory...
    [ 7.355475] systemd[1]: Starting system-getty.slice.
    [ 7.356130] systemd[1]: Created slice system-getty.slice.
    [ 7.405020] systemd[1]: Started Set Up Additional Binary Formats.
    [ 7.405060] systemd[1]: Starting Setup Virtual Console...
    [ 7.434270] systemd[1]: Starting Load Kernel Modules...
    [ 7.435152] systemd[1]: Mounting Huge Pages File System...
    [ 7.450675] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 7.451757] systemd[1]: Mounting POSIX Message Queue File System...
    [ 7.452682] systemd[1]: Mounting Debug File System...
    [ 7.453572] systemd[1]: Starting udev Coldplug all Devices...
    [ 7.454542] systemd[1]: Starting Journal Service...
    [ 7.455770] systemd[1]: Started Journal Service.
    [ 8.017658] vboxdrv: Found 2 processor cores.
    [ 8.017849] vboxdrv: fAsync=0 offMin=0x19a offMax=0x113a
    [ 8.017936] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 8.017938] vboxdrv: Successfully loaded version 4.3.12_OSE (interface 0x001a0007).
    [ 8.066565] EXT4-fs (sda2): re-mounted. Opts: (null)
    [ 8.453787] systemd-udevd[137]: starting version 215
    [ 9.297221] Monitor-Mwait will be used to enter C-1 state
    [ 9.297230] Monitor-Mwait will be used to enter C-2 state
    [ 9.297235] tsc: Marking TSC unstable due to TSC halts in idle
    [ 9.297251] ACPI: acpi_idle registered with cpuidle
    [ 9.297798] Switched to clocksource hpet
    [ 9.397577] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input5
    [ 9.398331] ACPI: Lid Switch [LID]
    [ 9.398442] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6
    [ 9.398448] ACPI: Power Button [PWRB]
    [ 9.398520] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input7
    [ 9.398523] ACPI: Sleep Button [SLPB]
    [ 9.398594] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input8
    [ 9.398597] ACPI: Power Button [PWRF]
    [ 9.714253] thermal LNXTHERM:00: registered as thermal_zone0
    [ 9.714258] ACPI: Thermal Zone [TZ00] (38 C)
    [ 9.788226] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 10.107244] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 10.107258] r8169 0000:08:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 10.107608] r8169 0000:08:00.0: irq 46 for MSI/MSI-X
    [ 10.107894] r8169 0000:08:00.0 eth0: RTL8102e at 0xf8e0e000, 60:eb:69:df:fc:5b, XID 04c00000 IRQ 46
    [ 10.138235] snd_hda_intel 0000:00:1b.0: irq 47 for MSI/MSI-X
    [ 10.151012] Linux agpgart interface v0.103
    [ 10.156788] sound hdaudioC0D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
    [ 10.156794] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 10.156797] sound hdaudioC0D0: hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
    [ 10.156799] sound hdaudioC0D0: mono: mono_out=0x0
    [ 10.156801] sound hdaudioC0D0: inputs:
    [ 10.156804] sound hdaudioC0D0: Mic=0x18
    [ 10.156807] sound hdaudioC0D0: Internal Mic=0x12
    [ 10.187737] ACPI Warning: SystemIO range 0x00000428-0x0000042f conflicts with OpRegion 0x00000400-0x0000047f (\PMIO) (20140214/utaddress-258)
    [ 10.187746] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 10.187751] ACPI Warning: SystemIO range 0x000011b0-0x000011bf conflicts with OpRegion 0x00001180-0x000011ff (\GPIO) (20140214/utaddress-258)
    [ 10.187755] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 10.187757] ACPI Warning: SystemIO range 0x00001180-0x000011af conflicts with OpRegion 0x00001180-0x000011ff (\GPIO) (20140214/utaddress-258)
    [ 10.187760] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 10.187762] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 10.200980] ACPI: Battery Slot [BAT1] (battery present)
    [ 10.307840] [drm] Initialized drm 1.1.0 20060810
    [ 10.331834] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input9
    [ 10.332165] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 10.332219] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 10.332274] input: HDA Intel HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 10.346048] agpgart-intel 0000:00:00.0: Intel GM45 Chipset
    [ 10.346167] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 10.346796] agpgart-intel 0000:00:00.0: detected 131072K stolen memory
    [ 10.346977] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [ 10.403254] ACPI Warning: SystemIO range 0x00001c00-0x00001c1f conflicts with OpRegion 0x00001c00-0x00001c0f (\_SB_.PCI0.SBUS.SMBI) (20140214/utaddress-258)
    [ 10.403262] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 10.407145] ACPI: AC Adapter [ACAD] (on-line)
    [ 10.407653] wmi: Mapper loaded
    [ 10.462739] Non-volatile memory driver v1.3
    [ 10.483086] cfg80211: Calling CRDA to update world regulatory domain
    [ 10.511461] thinkpad_acpi: ThinkPad ACPI Extras v0.25
    [ 10.511465] thinkpad_acpi: http://ibm-acpi.sf.net/
    [ 10.511467] thinkpad_acpi: ThinkPad BIOS 6JET85WW (1.43 ), EC 6JHT66WW-1.186000
    [ 10.511469] thinkpad_acpi: Lenovo ThinkPad SL510, model 2847A65
    [ 10.513121] thinkpad_acpi: detected a 16-level brightness capable ThinkPad
    [ 10.517198] thinkpad_acpi: radio switch found; radios are enabled
    [ 10.517210] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
    [ 10.517319] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
    [ 10.517321] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
    [ 10.518287] thinkpad_acpi: asked for hotkey mask 0x078c7fff, but firmware forced it to 0x008c7fff
    [ 10.617843] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    [ 10.617954] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [ 10.640485] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input17
    [ 10.717742] microcode: CPU0 sig=0x1067a, pf=0x80, revision=0xa0b
    [ 10.928161] media: Linux media interface: v0.10
    [ 11.006082] iTCO_vendor_support: vendor-support=0
    [ 11.008425] Linux video capture interface: v2.00
    [ 11.015257] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 11.015302] iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0460)
    [ 11.015485] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 11.050172] systemd-udevd[146]: renamed network interface eth0 to enp8s0
    [ 11.084784] microcode: CPU1 sig=0x1067a, pf=0x80, revision=0xa0b
    [ 11.084877] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 11.401469] [drm] Memory usable by graphics device = 2048M
    [ 11.401476] checking generic (d0000000 300000) vs hw (d0000000 10000000)
    [ 11.401478] fb: switching to inteldrmfb from VESA VGA
    [ 11.401504] Console: switching to colour dummy device 80x25
    [ 11.423441] i915 0000:00:02.0: irq 48 for MSI/MSI-X
    [ 11.423454] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 11.423456] [drm] Driver supports precise vblank timestamp query.
    [ 11.423531] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 11.474103] rtl8192se: FW Power Save off (module option)
    [ 11.474191] rtl8192se: Driver for Realtek RTL8192SE/RTL8191SE
    Loading firmware rtlwifi/rtl8192sefw.bin
    [ 11.539577] fbcon: inteldrmfb (fb0) is primary device
    [ 11.568063] psmouse serio4: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd047b3/0xb40000/0xa0000, board id: 71, fw id: 578367
    [ 11.568068] psmouse serio4: synaptics: serio: Synaptics pass-through port at isa0060/serio4/input0
    [ 11.625453] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input16
    [ 11.649292] mousedev: PS/2 mouse device common for all mice
    [ 11.819295] uvcvideo: Found UVC 1.00 device Integrated Camera (17ef:481c)
    [ 11.832647] input: Integrated Camera as /devices/pci0000:00/0000:00:1d.7/usb3/3-6/3-6:1.0/input/input19
    [ 11.832785] usbcore: registered new interface driver uvcvideo
    [ 11.832786] USB Video Class driver (1.1.1)
    [ 11.900636] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
    [ 11.912613] systemd-udevd[144]: renamed network interface wlan0 to wlp5s0
    [ 12.173403] Console: switching to colour frame buffer device 170x48
    [ 12.178613] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 12.178615] i915 0000:00:02.0: registered panic notifier
    [ 12.191803] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 12.193501] acpi device:06: registered as cooling_device2
    [ 12.193604] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input20
    [ 12.193997] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 12.246859] Adding 2097148k swap on /dev/sda3. Priority:-1 extents:1 across:2097148k FS
    [ 13.644561] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 13.954050] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    [ 14.071585] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    [ 14.166537] systemd-journald[114]: Received request to flush runtime journal from PID 1
    [ 16.054096] psmouse serio5: alps: Unknown ALPS touchpad: E7=10 00 64, EC=10 00 64
    [ 16.358428] psmouse serio5: hgpk: ID: 10 00 64
    [ 18.270058] psmouse serio5: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
    [ 18.588710] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio4/serio5/input/input18
    [ 20.986088] IPv6: ADDRCONF(NETDEV_UP): wlp5s0: link is not ready
    [ 20.997921] r8169 0000:08:00.0 enp8s0: link down
    [ 20.997967] IPv6: ADDRCONF(NETDEV_UP): enp8s0: link is not ready
    [ 23.204726] wlp5s0: authenticate with 8c:21:0a:77:4c:32
    [ 23.231917] wlp5s0: send auth to 8c:21:0a:77:4c:32 (try 1/3)
    [ 23.233796] wlp5s0: authenticated
    [ 23.237347] wlp5s0: associate with 8c:21:0a:77:4c:32 (try 1/3)
    [ 23.241118] wlp5s0: RX AssocResp from 8c:21:0a:77:4c:32 (capab=0x431 status=0 aid=3)
    [ 23.242837] wlp5s0: associated
    [ 23.242852] IPv6: ADDRCONF(NETDEV_CHANGE): wlp5s0: link becomes ready
    [ 23.407416] wlp5s0: deauthenticating from 8c:21:0a:77:4c:32 by local choice (Reason: 2=PREV_AUTH_NOT_VALID)
    [ 23.443391] cfg80211: Calling CRDA for country: US
    [ 23.443467] wlp5s0: authenticate with 8c:21:0a:77:4c:32
    [ 23.463399] wlp5s0: send auth to 8c:21:0a:77:4c:32 (try 1/3)
    [ 23.465298] wlp5s0: authenticated
    [ 23.466930] wlp5s0: associate with 8c:21:0a:77:4c:32 (try 1/3)
    [ 23.471099] wlp5s0: RX AssocResp from 8c:21:0a:77:4c:32 (capab=0x431 status=0 aid=3)
    [ 23.472786] wlp5s0: associated
    [ 391.317544] [drm] HPD interrupt storm detected on connector DP-2: switching from hotplug detection to polling
    [ 495.430421] perf interrupt took too long (2517 > 2495), lowering kernel.perf_event_max_sample_rate to 50100
    [ 526.290766] [drm] HPD interrupt storm detected on connector DP-2: switching from hotplug detection to polling
    [ 646.953268] [drm] HPD interrupt storm detected on connector DP-2: switching from hotplug detection to polling
    [ 767.198414] [drm] HPD interrupt storm detected on connector DP-2: switching from hotplug detection to polling
    Last edited by jazzi (2014-07-31 12:22:09)

    jazzi wrote:Sometimes the computer will freeze when booting into start virtual console.
    Gotta to use the power button to shut down, normally it will boot successfully followingby.
    Before is ok, can't remember when this problem show up.
    Don't know where to go, please give me a hint.
    You have to give us a hint.
    What is your processor?
    How much RAM have you?
    What is your video card/ship set?
    What kernel are you running?
    I spotted this in your dump:
    [drm] HPD interrupt storm detected on connector DP-2: switching from hotplug detection to polling
    In this case, drm means Direct Rendering Management and has to do with your Video subsystem.  An interrupt is where the hardware sends a signal to the processor that something has happened that requires the urgent attention of the processor.  The kernel is protesting that the hardware is barraging it with interrupt requests.

  • Issues with Quark Xpress Hang/Freeze when focus is shifted to anything else

    I've been working on this issue since the 28th of Dec.
    I've been in contact with Quark. They're still examining crash log.
    I thought I'd share what is on my plate in hopes others might have had, and solved similar experience.
    This message will be verbose in hope of giving the uber-guru answers to questions in advance of their being asked.
    First portion will contain a log of actions taken and results there of.
    Second will be the typical Quark Crash log I've been getting when the application is quit.
    I will mention as well that I've received a clean bill of health from TechToolPro, DiskWarrior, etceteras, as well as Passed the tests from Apple Hardware Tests.
    Let me know if I can provide any additional info
    Log of Actions
    Installation of new Quark, up to 6.5 only.
    Completed at 5:27pm
    Launching Quark under New User at 5:28
    Launch successful.
    Created one file. Saved file, selected finder, then text editor, the quark.
    Quark still operating. added text, saved, and closed document.
    selected finder, then text editor, the quark.
    Quark still operating.
    Manually quit quark from application menu at 5:33.
    Application successfully "quit" without "crashing"
    Repeating the procedure above at 5:34
    Launched quark via double-click of previously saved file.
    added text, saved, selected finder, then text editor, the quark.
    Quark still operating.
    selected finder, then text editor, the quark.
    Quark still operating.
    quit quark from cmd-tab cmd-q method causes "unexpected crash"
    Ran several similar scenarios, with this as conclusion:
    Launching quark from double click of application, creation of new document, saving, and quitting in ANY fashion allows safe quit
    Launching Quark, opening from save/open dialog box an existing document, then quit with or without edit, using cmd-tab cmd-q allows safe quit
    Double-clicking existing document to launch Quark, then closing document after edit and save or immediately, quark Unexp. Crash occurs with Cmd-Tab Cmd-Q every time.
    Double-clicking existing documents to launch Quark, then closing document after edit and save, then create new document, with save and close, quark Unexp. Crash occurs with Cmd-Tab Cmd-Q every time.
    Launching of Quark 6.50 under base user
    Launching Quark, opening from save/open dialog box an existing document, then quit with or without edit, using cmd-tab cmd-q allows safe quit
    Double-clicking existing document to launch Quark, then closing document after edit and save or immediately, quark Unexp. Crash occurs with Cmd-Tab Cmd-Q every time.
    Double-clicking existing documents to launch Quark, then closing document after edit and save, then create new document, with save and close, quark Unexp. Crash occurs with Cmd-Tab Cmd-Q every time.
    Launching Quark, creating file, saving, selected finder, then text editor, the quark.
    Quark hangs/freezes until force-quit
    it seems there are two issues at hand.
    unexpected crashes occur with cmd-tab cmd-q in either Base or New user logins when quark launch was initiated by double-click of file from finder.
    and
    unexplained application hangs/freezes when under base user.
    Quark Crash Log
    Date/Time: 2008-01-03 19:08:44.597 -0500
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: QuarkXPress
    Path: /Applications/QuarkTest/QuarkXPress 6.1/QuarkXPress/Contents/MacOS/QuarkXPress
    Parent: WindowServer [102]
    Version: QuarkXPress version 6.50 (6.50)
    PID: 4127
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x170f086c
    Thread 0 Crashed:
    0 <<00000000>> 0x170f086c 0 + 386861164
    1 com.quark.QuarkXPress 0x00554a18 _destroy_globalchain + 60
    2 com.quark.QuarkXPress 0x0053f910 exit + 52
    3 com.quark.QuarkXPress 0x00003f04 call_mod_initfuncs + 0
    4 com.quark.QuarkXPress 0x00003d80 _code_start_ + 48
    Thread 1:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.unsanity.ape 0xc0001bf4 _apeagent + 296
    3 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf73f4 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bff390 TimerThread + 60
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x900411f8 machwaituntil + 8
    1 libSystem.B.dylib 0x90040fc4 nanosleep + 388
    2 libSystem.B.dylib 0x90040df0 sleep + 144
    3 <<00000000>> 0x26124604 0 + 638731780
    4 <<00000000>> 0x2612d724 0 + 638768932
    5 <<00000000>> 0x2612d334 0 + 638767924
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900541e4 pthreadcondtimedwait + 676
    2 <<00000000>> 0x26125f90 0 + 638738320
    3 <<00000000>> 0x26126134 0 + 638738740
    4 <<00000000>> 0x25caa6bc 0 + 634037948
    5 <<00000000>> 0x26251480 0 + 639964288
    6 <<00000000>> 0x2612d724 0 + 638768932
    7 <<00000000>> 0x2612d334 0 + 638767924
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900541e4 pthreadcondtimedwait + 676
    2 <<00000000>> 0x26125f90 0 + 638738320
    3 <<00000000>> 0x26126134 0 + 638738740
    4 <<00000000>> 0x25caa6bc 0 + 634037948
    5 <<00000000>> 0x26251480 0 + 639964288
    6 <<00000000>> 0x2612d724 0 + 638768932
    7 <<00000000>> 0x2612d334 0 + 638767924
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900541e4 pthreadcondtimedwait + 676
    2 <<00000000>> 0x26125f90 0 + 638738320
    3 <<00000000>> 0x26126134 0 + 638738740
    4 <<00000000>> 0x25caa6bc 0 + 634037948
    5 <<00000000>> 0x26251480 0 + 639964288
    6 <<00000000>> 0x2612d724 0 + 638768932
    7 <<00000000>> 0x2612d334 0 + 638767924
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x900411f8 machwaituntil + 8
    1 libSystem.B.dylib 0x90040fc4 nanosleep + 388
    2 libSystem.B.dylib 0x90040df0 sleep + 144
    3 <<00000000>> 0x2625157c 0 + 639964540
    4 <<00000000>> 0x2612d724 0 + 638768932
    5 <<00000000>> 0x2612d334 0 + 638767924
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000170f086c srr1: 0x100000004000f030 vrsave: 0x0000000000000000
    cr: 0x44800204 xer: 0x0000000000000000 lr: 0x00000000005549cc ctr: 0x00000000170f086c
    r0: 0x0000000000554a18 r1: 0x00000000bffffac0 r2: 0x00000000007e2d70 r3: 0x00000000170f086c
    r4: 0xffffffffffffffff r5: 0x00000000000003e8 r6: 0xffffffffffffffff r7: 0x0000000000000000
    r8: 0x0000000000000001 r9: 0x00000000a0001fac r10: 0x0000000002285a00 r11: 0x0000000024800202
    r12: 0x00000000170f086c r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x0000000000000000 r21: 0x0000000000000000 r22: 0x0000000000000000 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x0000000000000000 r26: 0x00000000bffffc44 r27: 0x000000000000000c
    r28: 0x0000000000000002 r29: 0x00000000bffffc54 r30: 0x000000000053f8f8 r31: 0x00000000007e49f0
    Binary Images Description:
    0x1000 - 0x71efff com.quark.QuarkXPress QuarkXPress version 6.50 (6.50) /Applications/QuarkTest/QuarkXPress 6.1/QuarkXPress/Contents/MacOS/QuarkXPress
    0xb05000 - 0xc45fff OmniCore.Mach-O.r.dylib /Applications/QuarkTest/QuarkXPress 6.1/OmniCore.Mach-O.r.dylib
    0xd1e000 - 0xe8ffff Xerces-c-cw8 /Library/Frameworks/Xerces-c-cw8.framework/Xerces-c-cw8
    0x1922c20 - 0x1922cd2 CFMPriv_CoreFoundation PEF binary: CFMPriv_CoreFoundation
    0x19232f0 - 0x1923367 CFMPriv_System PEF binary: CFMPriv_System
    0x1923610 - 0x19236e0 CFMPriv_CarbonSound PEF binary: CFMPriv_CarbonSound
    0x1923760 - 0x1923833 CFMPriv_CommonPanels PEF binary: CFMPriv_CommonPanels
    0x1923910 - 0x19239cb CFMPriv_Help PEF binary: CFMPriv_Help
    0x19239d0 - 0x1923a9a CFMPriv_HIToolbox PEF binary: CFMPriv_HIToolbox
    0x1923b20 - 0x1923bf6 CFMPriv_HTMLRendering PEF binary: CFMPriv_HTMLRendering
    0x1923c70 - 0x1923d43 CFMPriv_ImageCapture PEF binary: CFMPriv_ImageCapture
    0x1923dd0 - 0x1923eb5 CFMPriv_NavigationServices PEF binary: CFMPriv_NavigationServices
    0x1923f30 - 0x1924006 CFMPriv_OpenScriptingMacBLib PEF binary: CFMPriv_OpenScriptingMacBLib
    0x19240e0 - 0x192419e CFMPriv_Print PEF binary: CFMPriv_Print
    0x19241c0 - 0x192428d CFMPriv_SecurityHI PEF binary: CFMPriv_SecurityHI
    0x1924310 - 0x19243f2 CFMPriv_SpeechRecognition PEF binary: CFMPriv_SpeechRecognition
    0x1924470 - 0x1924543 CFMPriv_CarbonCore PEF binary: CFMPriv_CarbonCore
    0x19245c0 - 0x1924693 CFMPriv_OSServices PEF binary: CFMPriv_OSServices
    0x1924770 - 0x1924832 CFMPriv_AE PEF binary: CFMPriv_AE
    0x1924840 - 0x1924905 CFMPriv_ATS PEF binary: CFMPriv_ATS
    0x1924980 - 0x1924a57 CFMPriv_ColorSync PEF binary: CFMPriv_ColorSync
    0x1924ae0 - 0x1924bc3 CFMPriv_FindByContent PEF binary: CFMPriv_FindByContent
    0x1924c40 - 0x1924d1a CFMPriv_HIServices PEF binary: CFMPriv_HIServices
    0x1924d90 - 0x1924e70 CFMPriv_LangAnalysis PEF binary: CFMPriv_LangAnalysis
    0x1924f00 - 0x1924fe6 CFMPriv_LaunchServices PEF binary: CFMPriv_LaunchServices
    0x19250c0 - 0x1925197 CFMPriv_PrintCore PEF binary: CFMPriv_PrintCore
    0x19251a0 - 0x1925262 CFMPriv_QD PEF binary: CFMPriv_QD
    0x1925360 - 0x1925449 CFMPriv_SpeechSynthesis PEF binary: CFMPriv_SpeechSynthesis
    0x1ed3000 - 0x1eedfff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1ef2000 - 0x1f08fff com.apple.IMXCodec 1.0 (114) /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x1f93000 - 0x1f9efff com.apple.LiveType.component 2.0.2 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x1fac000 - 0x1febfff com.apple.QuickTimeFireWireDV.component 7.3.1 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1fff000 - 0x1fff92b KodakCarbonShared PEF binary: KodakCarbonShared
    0x1623c000 - 0x162b5fff com.DivXInc.DivXDecoder 6.0.5 /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x162c6000 - 0x163a2fff com.divxnetworks.DivXCodec 5.1.1 /Library/QuickTime/DivX 5.component/Contents/MacOS/DivX 5
    0x1642e000 - 0x1642efff com.apple.applescript.component 1.10.7 /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
    0x16444000 - 0x1667dfff net.telestream.wmv.import 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x166b3000 - 0x16867fff net.telestream.wmv.advanced 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x168a9000 - 0x16922fff com.apple.DVCPROHDCodec 1.1.1 (209) /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x16938000 - 0x169e8fff com.apple.AppleHDVCodec 1.0 (129) /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x16a06000 - 0x16a7ffff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x18576000 - 0x185c53c7 CarbonLibpwpc PEF binary: CarbonLibpwpc
    0x185e7000 - 0x1864f97e KodakCMSC PEF binary: KodakCMSC
    0x25ac4000 - 0x25b1402f OLE.CARBON.Shared PEF binary: OLE.CARBON.Shared
    0x780ce000 - 0x78136fff com.apple.LiveType.framework 2.0.2 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x88d70000 - 0x88d75fff com.apple.CoreMediaAuthoringPrivate 1.1 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x88fc0000 - 0x88fe7fff com.apple.CoreMediaPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x89030000 - 0x890d0fff com.apple.QuickTimeImporters.component 7.3.1 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.9 (368.31) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.22 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193e000 - 0x91980fff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919be000 - 0x91a04fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b30000 - 0x91b46fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b4b000 - 0x91b69fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6f000 - 0x91c26fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c75000 - 0x91c79fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7b000 - 0x91ce5fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91cea000 - 0x91d27fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2e000 - 0x91d48fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d4d000 - 0x91d50fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d52000 - 0x91e30fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e50000 - 0x91e50fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e52000 - 0x91f37fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3f000 - 0x91f5efff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fca000 - 0x92038fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92043000 - 0x920d8fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920f2000 - 0x9267afff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926ad000 - 0x929d8fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a08000 - 0x92af6fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af9000 - 0x92b81fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bc2000 - 0x92dedfff com.apple.Foundation 6.4.9 (567.36) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f1a000 - 0x92f38fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f43000 - 0x92f9dfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fbb000 - 0x92fbbfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fbd000 - 0x92fd1fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe9000 - 0x92ff9fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93005000 - 0x9301afff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9302c000 - 0x930b3fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c7000 - 0x930d2fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930dc000 - 0x93109fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93123000 - 0x93133fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313f000 - 0x931a5fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d6000 - 0x93225fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93253000 - 0x93270fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93282000 - 0x9328ffff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93298000 - 0x935a6fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f6000 - 0x93702fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9377b000 - 0x9377bfff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9377d000 - 0x93db0fff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9413d000 - 0x941affff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e8000 - 0x942adfff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94300000 - 0x94300fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94302000 - 0x944c2fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9450c000 - 0x94549fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94551000 - 0x945a1fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945aa000 - 0x945c4fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945d5000 - 0x945f6fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94799000 - 0x947a8fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947b0000 - 0x947bcfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94802000 - 0x9481afff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94821000 - 0x94b48fff com.apple.QuickTime 7.3.1 /System/Library/Frameworks/QuickTime.framework/QuickTime
    0x94c2e000 - 0x94c9ffff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x95075000 - 0x95092fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x974b5000 - 0x974d4fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97cda000 - 0x97ce7fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97de2000 - 0x97e04fff com.apple.AppleVAFramework 2.4.32 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x98f34000 - 0x98fdefff com.apple.applescript 1.10.7 /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
    0x9917c000 - 0x99d6afff com.apple.QuickTimeComponents.component 7.3.1 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99fcd000 - 0x99fd1fff com.apple.QuickTimeH264.component 7.3.1 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9a26d000 - 0x9a33bfff com.apple.QuickTimeMPEG4.component 7.3.1 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9ac70000 - 0x9ac8efff com.apple.OpenTransport 2.0 /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0xc0000000 - 0xc000ffff com.unsanity.ape 2.0.3 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Model: PowerMac11,2, BootROM 5.2.7f1, 2 processors, PowerPC G5 (1.1), 2 GHz, 2.5 GB
    Graphics: NVIDIA GeForce 6600, GeForce 6600, PCI, 256 MB
    Memory Module: DIMM0/J6700, 256 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM1/J6800, 256 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM2/J6900, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM3/J7000, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Network Service: Built-in Ethernet 1, Ethernet, en0
    PCI Card: GeForce 6600, Display, SLOT-1
    PCI Card: bcom5714, network, GIGE
    PCI Card: bcom5714, network, GIGE
    Serial ATA Device: WDC WD1600JS-41MVB1, 149.05 GB
    Parallel ATA Device: HL-DT-ST DVD-RW GWA-4165B
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: CTE-440-U V4.0-3, WACOM, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Hub, Up to 12 Mb/sec, 500 mA
    USB Device: USB Printer, EPSON, Up to 12 Mb/sec, 500 mA
    USB Device: AK5370, AKM, Up to 12 Mb/sec, 500 mA
    FireWire Device: External HD, Iomega, Up to 800 Mb/sec
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec

    nodel9999 wrote:
      Should I buy an enclosure for my HD and see if I can get it going externally?  Would that be the best way to see if it is the drive and not the cable?  An enclosure is cheaper than buying a new SATA cable, so I'm hoping that's where I can start.
    Yes.  See if the HDD will boot the MBP via a USB connection.  You should probably have an external HDD for backups or a possible replacement of your boot drive.
    Ciao.

  • My adobe acrobat XI Pro has been constantly freezing when I open documents.

    My adobe acrobat XI Pro has been constantly freezing when I open documents. I've uninstalled and reinstalled the program, changed some settings based on community threads, nothing is working. I have to close the document, open it back up and wait at least 60 seconds before I can do anything. I use Adobe pdfs for everything this is very bad. I am using MS Office 365, and Adobe CC on Windows 8.1.

    Hi Kate,
    Please refer to this KB doc. for the solution Application, file icons change to Acrobat/Reader icon
    Let me know if the issue persist.
    Regards,
    Aadesh

Maybe you are looking for

  • New gl a/c Fi  and Co

    Hi What is difference between for Ecc.6.0 version new gl a/c feature add in Finance and controlling ,I know 1.Document spitting 2.segment reporting 3.parallel ledger 4.Migration from classic gl new to new gl what is the additional feature in finance

  • Viewing an MBean on the administration console

    I have registered an MBean on a WebLogic 6.0 server. Now I need to know how to view this MBean and run the methods of the class represented by this MBean possibly from the Administration Console. I want some way to run the methods as I could on the H

  • Out Put Type in RFQ & PO

    Hello All We have created NEW  output type for the RFQ & PO , We want to print the RFQ & sending mail to vendor also Whether in the out type in default value transmission medium for one Printout & another send external need to be maintained? Also aft

  • Purpose of job SWWCOND

    Hi All, Can anyone pls tell me the detail of what the job SWWCOND is for? In my production system, this job cost about 30 minutes every time. How to optimize is? My SAP_BASIS SP is SAPKB70018 release 700. Thanks, Wang

  • Extract attributes

    I have a very simple piece of xml: <?xml version="1.0" encoding="UTF-8"?> <MyData Matches="3">   <Match My_code="101" />   <Match My_code="102" />   <Match My_code="103" /> </MyData>and what I am after is a list of the My_code attributes, as a list o