Logging Panel (help!)

Hi everyone,
I want to add a logging panel to my frame. I want to use it in order to diplay text messages displayed by the program rather than printing it to the console.
I don't know how to direct the text to this panel. Would plz tell me how to do this? or give me a reference to read?
Many Thanks,
Somaya

I can't really understand why you want to redirect System.out/System.err ("printing to the console") if you are using a frame. Why print to the console instead of using GUI components only?
However odd it may seem, I thought it would be a fun experiment so I created a panel class you can use:
import javax.swing.*;
import java.awt.*;
import java.io.OutputStream;
import java.io.PrintStream;
import java.io.IOException;
* Panel class that can intercept and redirect System.out and/or System.err to internal scrollable JTextArea.
public class OutErrInterceptingPanel extends JPanel
    * @param interceptErrStream decides whether or not to intercept and redirect System.err to text area
    * @param interceptOutStream decides whether or not to intercept and redirect System.out to text area
   public OutErrInterceptingPanel(boolean interceptErrStream, boolean interceptOutStream)
      JTextArea logArea = new JTextArea();
      logArea.setEditable(false);
      setLayout(new BorderLayout());
      add(new JScrollPane(logArea), BorderLayout.CENTER);
      //Use fake/intercepting OutStream to connect PrintStream(-s) to JTextArea...
      OutputStream wrapper = null;
      if (interceptErrStream)
         wrapper = new StreamWrapper(logArea);
         System.setErr(new PrintStream(wrapper));
      if (interceptOutStream)
         if (wrapper == null)
            wrapper = new StreamWrapper(logArea);
         System.setOut(new PrintStream(wrapper));
    * Acts as an OutputStream but it intercepts all write calls and adds data to a JTextArea instead...
   private class StreamWrapper extends OutputStream
      private JTextArea outputSource;
      public StreamWrapper(JTextArea aOutputSource)
         outputSource = aOutputSource;
      public void write(int b) throws IOException
         //Convert and append to JTextArea (Note that append method is thread safe)
         if (b < 0)
            outputSource.append("?"); //Replace invalid char with a question mark
         else
            char[] chars = Character.toChars(b);
            for (int i = 0; i < chars.length; i++)
               outputSource.append(Character.toString(chars));
public void write(byte[] b) throws IOException
for (int i = 0; i < b.length; i++)
write(b[i]);
public void write(byte[] b, int off, int len) throws IOException
for (int i = off; i < off + len; i++)
write(b[i]);
And of course I also created a GUI application for testing the panel:
import javax.swing.*;
import java.awt.*;
public class TextAreaLogger extends JFrame
   public TextAreaLogger(JPanel logPanel)
      super("Sample Application on how to use OutErrInterceptingPanel");
      getContentPane().add(new JLabel("See OutErrInterceptingPanel in action below:"), BorderLayout.NORTH);
      getContentPane().add(logPanel, BorderLayout.CENTER);
   public static void main(String[] args)
      //Create GUI on the event dispatching thread
      try
         SwingUtilities.invokeAndWait(new Runnable()
            public void run()
               //Create intercepting panel (intercept System.out only) and use it in GUI
               JPanel logPanel = new OutErrInterceptingPanel(false, true);
               TextAreaLogger frame = new TextAreaLogger(logPanel);
               frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
               frame.setSize(450, 400);
               frame.setVisible(true);
      } catch (Exception e)
      //Print 25 lines to System.out 25 lines to System.err
      for (int i = 1; i <= 25; i++)
         System.out.println("This is a line "+ i +" written to System.out");
         System.err.println("This is a line "+ i +" written to System.err");
}My implementation may not be the best way of redirecting System.out and System.err to a text area, but it sure was fun to do! =)
Note. If I completely misinterpreted what you wanted help with - if all you really wanted was to know a litle bit about JTextArea - you may find this link useful (and you should probably just ignore the code above):
http://java.sun.com/docs/books/tutorial/uiswing/components/text.html

Similar Messages

  • Security Question not appearing in Log on help

    Hi,
    I have done all the settings from my end to enable security questions in Log on help at the time of password reset by user.
    But still it is not asking for a security question at the time of password reset by an existing user.  It is still asking for user id , first name, last name, and email  and the passord is sent. Settings I have done as follows:
    1> Ume.logon_help.securityquestion = true
    2> In UME configuration also I have checked Enable security questions also.
    3> Instances restarted
    But after that also when resetting the password from Log on help it is not asking for a security question.
    Please note that i want to do this for existing users also.Also don't know how to maintain the security question and answers for them as I have also introduced selfmanagement for them. But can't find the place to maintain it.
    regards
    Chandu

    Hi Shanti,
    Thanks for your reply.
    I have already done everything to configure self-management. But when I search for a user in Useradmin I  am not finding the place where I will maintain Security question and answer. More over when I am resetting a password it is allowing me to reset that without asking security question.
    Thanks

  • TS3989 Mssage when opening Photo Stream on-"This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel" Help!!!

    Mssage when opening Photo Stream on-"This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel" Help!!!

    You are posting in the "icloud on my mac" forum, but your profile mentions Windows.  If using a mac, you need to have iphoto or aperture installed in order to receive new photos via photo stream.  If using windows, try posting in the iCloud on a PC forum.  You'll get better help there.
    https://discussions.apple.com/community/icloud/icloud_on_my_pc

  • TS1368 I am recieving the following message when attempting to sign into my iTunes store - An unknown error has occurred. can someone please help me I have reset my password but still unable to log in. help!!

    I am recieving the following message when attempting to sign into my iTunes store - An unknown error has occurred. can someone please help me I have reset my password but still unable to log in. help!!

    I am recieving the following message when attempting to sign into my iTunes store - An unknown error has occurred. can someone please help me I have reset my password but still unable to log in. help!!

  • Writing to the Message Log panel`

    Is there any way to write to the Message Log panel from a transform script?

    Try this:
    Packages.oracle.dbtools.crest.swingui.ApplicationView.log("your text");
    Philip

  • I am trying to set up family sharing and do not have the setup option when logged in, help!

    I am trying to set up family sharing and do not have the setup option when logged in, help!

    Hello Carney10,
    Thank you for visiting Apple Support Communities.
    When you say you do not have the setup option for Family Sharing, that seems like you log into the iCloud System Preference but the "Set Up Family" button is not there.
    Is your Mac updated to Yosemite?
    Family Sharing - Apple Support
    iOS 8 and OS X Yosemite are required to set up or join a Family Sharing group and are recommended for full functionality.
    Where in the setup are the options not available or working?
    OS X Yosemite: Set up Family Sharing
    Best regards,
    Nubz

  • Tooltip in log panel in JDeveloper

    This is just a cry from the heart...
    Please, PLEASE, P-L-E-A-S-E someone, anyone who can, remove the unfortunately eternaly recurring tooltip from the log panel in JDeveloper. It is absolutely USELESS (the equivalent in the status bar would be so much less aggressive) and UNBELIEVABLY A-N-N-O-Y-I-N-G. Move the mouse, reappears... move the mouse, reappears... just like an annoying fly when you are trying to eat in peace.
    Pretty, pretty please... anyone...
    Thank you. Feels good to talk about it.
    Mikey

    FWIW, I find it annoying too, but I believe it's present for accessibility.
    Thanks,
    Brian

  • Lion keeps crashing on mpb  Here is the crash log PLEASE HELP

    lion keeps crashing, esp when using google chrome. even when im not. but chrome in itself crashes alot
    here is the log please help !  thanks in advance
    Interval Since Last Panic Report:  1679610 sec
    Panics Since Last Report:          8
    Anonymous UUID:                    FDE78AD6-758D-4DC5-AD98-44A735087EC1
    Sat May  5 18:26:53 2012
    panic(cpu 1 caller 0xffffff80005f666f): "removeSymbol"@/SourceCache/xnu/xnu-1699.24.8/libkern/c++/OSSymbol.cpp:366
    Backtrace (CPU 1), Frame : Return Address
    0xffffff80fe3a3cd0 : 0xffffff8000220702
    0xffffff80fe3a3d50 : 0xffffff80005f666f
    0xffffff80fe3a3db0 : 0xffffff80005f6069
    0xffffff80fe3a3dd0 : 0xffffff80005f5e25
    0xffffff80fe3a3e00 : 0xffffff80005e45bb
    0xffffff80fe3a3e30 : 0xffffff80005e47f9
    0xffffff80fe3a3e50 : 0xffffff80005e45cd
    0xffffff80fe3a3e80 : 0xffffff80005e47f9
    0xffffff80fe3a3ea0 : 0xffffff80005ec34e
    0xffffff80fe3a3ec0 : 0xffffff80005e45cd
    0xffffff80fe3a3ef0 : 0xffffff80005eb30e
    0xffffff80fe3a3f30 : 0xffffff80005eb003
    0xffffff80fe3a3f70 : 0xffffff800023db2c
    0xffffff80fe3a3fb0 : 0xffffff8000820057
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    11C74
    Kernel version:
    Darwin Kernel Version 11.2.0: Tue Aug  9 20:54:00 PDT 2011; root:xnu-1699.24.8~1/RELEASE_X86_64
    Kernel UUID: 59275DFA-10C0-30B3-9E26-F7B5DFB1A432
    System model name: MacBookPro5,4 (Mac-F22587A1)
    System uptime in nanoseconds: 256203088583
    last loaded kext at 53037096637: com.apple.driver.AppleHWSensor          1.9.4d0 (addr 0xffffff7f81d40000, size 28672)
    loaded kexts:
    com.paceap.kext.pacesupport.snowleopard          5.7.2
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AudioAUUC          1.59
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AppleHDA          2.1.3f7
    com.apple.driver.AGPM          100.12.42
    com.apple.driver.AppleMikeyDriver          2.1.3f7
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.driver.AudioIPCDriver          1.2.1
    com.apple.GeForce          7.1.2
    com.apple.driver.AppleBacklight          170.1.9
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.driver.AppleLPC          1.5.3
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.driver.AppleMuxControl          3.0.16
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.5d4
    com.apple.driver.AppleUSBTCButtons          225.2
    com.apple.driver.AppleUSBTCKeyEventDriver          225.2
    com.apple.driver.AppleUSBTCKeyboard          225.2
    com.apple.driver.AppleIRController          312
    com.apple.driver.AppleUSBCardReader          3.0.1
    com.apple.iokit.SCSITaskUserClient          3.0.1
    com.apple.iokit.IOAHCIBlockStorage          2.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.driver.AirPort.Brcm4331          512.20.18
    com.apple.driver.AppleAHCIPort          2.2.0
    com.apple.driver.AppleFWOHCI          4.8.9
    com.apple.driver.AppleUSBHub          4.5.0
    com.apple.nvenet          2.0.17
    com.apple.driver.AppleUSBEHCI          4.5.0
    com.apple.driver.AppleUSBOHCI          4.4.5
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          167.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          167.0.0
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOBluetoothSerialManager          4.0.1f4
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAVBFamily          1.0.0d22
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.driver.AppleHDAHardwareConfigDriver          2.1.3f7
    com.apple.driver.DspFuncLib          2.1.3f7
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.ApplePolicyControl          3.0.16
    com.apple.nvidia.nv50hal          7.1.2
    com.apple.NVDAResman          7.1.2
    com.apple.iokit.IOFireWireIP          2.2.4
    com.apple.driver.AppleHDAController          2.1.3f7
    com.apple.iokit.IOHDAFamily          2.1.3f7
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.driver.AppleGraphicsControl          3.0.16
    com.apple.iokit.IONDRVSupport          2.3.2
    com.apple.iokit.IOGraphicsFamily          2.3.2
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleSMC          3.1.1d8
    com.apple.driver.IOPlatformPluginFamily          4.7.5d4
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleFileSystemDriver          13
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.1f4
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.1f4
    com.apple.iokit.IOBluetoothFamily          4.0.1f4
    com.apple.driver.AppleUSBMultitouch          227.1
    com.apple.iokit.IOUSBHIDDriver          4.4.5
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.1
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.driver.AppleUSBMergeNub          4.5.3
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.1
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.7
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IOAHCISerialATAPI          2.0.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.1
    com.apple.iokit.IO80211Family          411.1
    com.apple.iokit.IOAHCIFamily          2.0.7
    com.apple.iokit.IOFireWireFamily          4.4.5
    com.apple.iokit.IOUSBUserClient          4.5.3
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOUSBFamily          4.5.3
    com.apple.driver.NVSMU          2.2.9
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          331
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.7
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacBookPro5,4, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.53 GHz, 8 GB, SMC 1.49f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333531533641465238432D48392020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333531533641465238432D48392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.100.98.75.18)
    Bluetooth: Version 4.0.1f4, 2 service, 11 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS542525K9SA00, 250.06 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24400000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0x26500000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0x04600000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8213, 0x06110000 / 3

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this exercise is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login. Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    Note: If FileVault is enabled under Mac OS X 10.7 or later, you can’t boot in safe mode.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem(s)?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • My Late 2008 MacBook Pro has started rebooting itself due to kernel panics.  Can anyone review the log to help me troubleshoot?

    I'm not sure if any recent activity spawned this activity but here's what I've done lately that's new...
    I booted to the recovery disk and and ran the disk repair utility on my hard drive.  Then I ran the RecoveryDiskAssistant to create a bootable USB thumb drive, and then I attempted to create a disk image on an external USB hard drive.  About an hour after I started creating the image I aborted the image creation process.  Both the MacBook Pro and the external hard drive were very hot. 
    I was experimenting, attempting to create the disk image file onto an external hard drive that is half the size of my existing main hard drive, and was not sure the image would fit, so aborted the process before it completed once I realized it might be an overnight task.  I'm wondering if the heat caused by the intense disk activity may have cooked something on my logic board.  Or maybe somethign completely unrelated is the cause, like a recent patch or software update perhaps???
    Can anyone help me identify a possible cause of the kernal panics from the two most recent log files attached below?
    -DaveB
    Anonymous UUID:       D884E858-96C7-9E16-1CEC-7143F546A61C
    Sat Sep 13 17:30:21 2014
    panic(cpu 1 caller 0xffffff800c8dc24e): Kernel trap at 0xffffff7f8ec167d4, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffff80d8d107a4, CR3: 0x0000000022362000, CR4: 0x0000000000000660
    RAX: 0x0000000000000023, RBX: 0xffffff80d8d107a4, RCX: 0x028b0e20012600ff, RDX: 0xffffff8108805088
    RSP: 0xffffff81087bb820, RBP: 0xffffff81087bb860, RSI: 0xffffff8108805068, RDI: 0x0000000000000001
    R8:  0xffffff80e8785078, R9:  0xffffff8108805068, R10: 0xffffff81087bb5d0, R11: 0x0000000000000200
    R12: 0xffffff7f8ec46cfe, R13: 0xffffff81087bb828, R14: 0xffffff8028537c00, R15: 0xffffff80d8d10008
    RFL: 0x0000000000010286, RIP: 0xffffff7f8ec167d4, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0xffffff80d8d107a4, Error code: 0x0000000000000000, Fault CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff81087bb4b0 : 0xffffff800c822f79
    0xffffff81087bb530 : 0xffffff800c8dc24e
    0xffffff81087bb700 : 0xffffff800c8f3746
    0xffffff81087bb720 : 0xffffff7f8ec167d4
    0xffffff81087bb860 : 0xffffff7f8ec17c48
    0xffffff81087bb970 : 0xffffff7f8ec17ff2
    0xffffff81087bb9e0 : 0xffffff7f8ec18256
    0xffffff81087bba60 : 0xffffff7f8ec293d7
    0xffffff81087bbaa0 : 0xffffff7f8ec23706
    0xffffff81087bbae0 : 0xffffff800c9fa9a6
    0xffffff81087bbb10 : 0xffffff800c9fb15e
    0xffffff81087bbb30 : 0xffffff800c9de64a
    0xffffff81087bbc80 : 0xffffff800cb82a93
    0xffffff81087bbcd0 : 0xffffff800cb7be46
    0xffffff81087bbd80 : 0xffffff800c9fa9a6
    0xffffff81087bbdb0 : 0xffffff800c9fb15e
    0xffffff81087bbdd0 : 0xffffff800c9de64a
    0xffffff81087bbf20 : 0xffffff800c9e5dfa
    0xffffff81087bbf50 : 0xffffff800cc40a33
    0xffffff81087bbfb0 : 0xffffff800c8f3f46
          Kernel Extensions in backtrace:
             com.apple.filesystems.afpfs(11.1)[DCC45CDD-E950-364F-8221-1A914106BC59]@0xfffff f7f8ec0b000->0xffffff7f8ec59fff
                dependency: com.apple.security.SecureRemotePassword(1.0)[BC0BAB92-C8C9-3959-AA42-272AF578DF D9]@0xffffff7f8ebfa000
    BSD process name corresponding to current thread: mds
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x000000000c600000
    Kernel text base: 0xffffff800c800000
    System model name: MacBookPro5,1 (Mac-F42D86A9)
    System uptime in nanoseconds: 23158850752273
    last loaded kext at 22567087185604: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7f8ec5a000, size 49152)
    last unloaded kext at 22460490357881: com.apple.iokit.IOUSBMassStorageClass 3.6.0 (addr 0xffffff7f8da35000, size 69632)
    loaded kexts:
    com.apple.driver.AppleIntelMCEReporter 104
    com.apple.filesystems.smbfs 2.0.2
    com.apple.filesystems.afpfs 11.1
    com.apple.nke.asp-tcp 8.0.1
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.driver.AGPM 100.14.28
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleLPC 1.7.0
    com.apple.GeForceTesla 8.2.4
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleMuxControl 3.6.22
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 325.7
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.nvenet 2.0.21
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.driver.AppleUSBOHCI 656.4.1
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 217.92.1
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleIntelCPUPowerManagement 217.92.1
    com.apple.security.SecureRemotePassword 1.0
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.kext.triggers 1.0
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.nvidia.classic.NVDANV50HalTesla 8.2.4
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.driver.AppleGraphicsControl 3.6.22
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.nvidia.classic.NVDAResmanTesla 8.2.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.6.6
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IO80211Family 640.36
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.driver.NVSMU 2.2.9
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0
    System Profile:
    Model: MacBookPro5,1, BootROM MBP51.007E.B06, 2 processors, Intel Core 2 Duo, 2.66 GHz, 8 GB, SMC 1.41f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x029E, 0x434D335B3447534431303636202020202020
    Memory Module: BANK 0/DIMM1, 4 GB, DDR3, 1067 MHz, 0x029E, 0x434D335B3447534431303636202020202020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 15 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: WDC WD5000BEVT-00ZAT0, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: Built-in iSight
    USB Device: BRCM2046 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: IR Receiver
    Thunderbolt Bus:
    =======================
    Anonymous UUID:       D884E858-96C7-9E16-1CEC-7143F546A61C
    Sat Sep 13 23:57:37 2014
    panic(cpu 1 caller 0xffffff8012cdc24e): Kernel trap at 0xffffff7f950166e2, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffff80deba3008, CR3: 0x000000002290e000, CR4: 0x0000000000000660
    RAX: 0x0000000000000039, RBX: 0x0000000000000059, RCX: 0x0200000002400009, RDX: 0x7fffffffffffffff
    RSP: 0xffffff811466b820, RBP: 0xffffff811466b860, RSI: 0x0000000000000059, RDI: 0xffffff80deba3008
    R8:  0x0000000000000000, R9:  0x0000000000000000, R10: 0xffffff810eb4d068, R11: 0x0000000000000200
    R12: 0xffffff80deba3008, R13: 0xffffff803cf7b808, R14: 0x0000000000000059, R15: 0xffffff80deba3008
    RFL: 0x0000000000010282, RIP: 0xffffff7f950166e2, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0xffffff80deba3008, Error code: 0x0000000000000000, Fault CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff811466b4b0 : 0xffffff8012c22f79
    0xffffff811466b530 : 0xffffff8012cdc24e
    0xffffff811466b700 : 0xffffff8012cf3746
    0xffffff811466b720 : 0xffffff7f950166e2
    0xffffff811466b860 : 0xffffff7f95017cbf
    0xffffff811466b970 : 0xffffff7f95017ff2
    0xffffff811466b9e0 : 0xffffff7f95018256
    0xffffff811466ba60 : 0xffffff7f950293d7
    0xffffff811466baa0 : 0xffffff7f95023706
    0xffffff811466bae0 : 0xffffff8012dfa9a6
    0xffffff811466bb10 : 0xffffff8012dfb15e
    0xffffff811466bb30 : 0xffffff8012dde64a
    0xffffff811466bc80 : 0xffffff8012f82a93
    0xffffff811466bcd0 : 0xffffff8012f7be46
    0xffffff811466bd80 : 0xffffff8012dfa9a6
    0xffffff811466bdb0 : 0xffffff8012dfb15e
    0xffffff811466bdd0 : 0xffffff8012dde64a
    0xffffff811466bf20 : 0xffffff8012de5dfa
    0xffffff811466bf50 : 0xffffff8013040a33
    0xffffff811466bfb0 : 0xffffff8012cf3f46
          Kernel Extensions in backtrace:
             com.apple.filesystems.afpfs(11.1)[DCC45CDD-E950-364F-8221-1A914106BC59]@0xfffff f7f9500b000->0xffffff7f95059fff
                dependency: com.apple.security.SecureRemotePassword(1.0)[BC0BAB92-C8C9-3959-AA42-272AF578DF D9]@0xffffff7f94ffa000
    BSD process name corresponding to current thread: mds
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x0000000012a00000
    Kernel text base: 0xffffff8012c00000
    System model name: MacBookPro5,1 (Mac-F42D86A9)
    System uptime in nanoseconds: 5737029096671
    last loaded kext at 4581906808714: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7f950a6000, size 49152)
    last unloaded kext at 3961468987029: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7f950a6000, size 32768)
    loaded kexts:
    com.apple.driver.AppleIntelMCEReporter 104
    com.apple.filesystems.smbfs 2.0.2
    com.apple.filesystems.afpfs 11.1
    com.apple.nke.asp-tcp 8.0.1
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.driver.AGPM 100.14.28
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.GeForceTesla 8.2.4
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleMuxControl 3.6.22
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 325.7
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.nvenet 2.0.21
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AppleUSBOHCI 656.4.1
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.
    System Profile:
    Model: MacBookPro5,1, BootROM MBP51.007E.B06, 2 processors, Intel Core 2 Duo, 2.66 GHz, 8 GB, SMC 1.41f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x029E, 0x434D335B3447534431303636202020202020
    Memory Module: BANK 0/DIMM1, 4 GB, DDR3, 1067 MHz, 0x029E, 0x434D335B3447534431303636202020202020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 15 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: WDC WD5000BEVT-00ZAT0, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: Built-in iSight
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: IR Receiver
    USB Device: BRCM2046 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus:

    Answering my own question...  I did more research and have a theory that my Time Capsule hard drive may be causing the kernal panics due to a disk error.  I ran the disk utility to repair the time capsule drive (actually a 3TB Seagate USB drive plugged into my Airport Extreme router).  I plugged the drive directly into my MacBook Pro and ran the repair utility.  It noticed a "minor header" issue and repaired it.  I'm leaving all USB and Firewire devices unplugged for a while and will see if the panics return.  Six years without any problem with my MacBook.  Love Apple.  I'd get a new MacBook, but this one just keeps on working...

  • Can't Left Click in Flash Player Settings Panel - HELP PLEASE

    Hi and thanks for taking the time to read this. Believe me it is a fraction of the time I have wasted trying to resolve this issue.
    Basic problem is:
    I am trying to stream to Ustream but since downloading AFP11 for my Windows PC when I open the Flash Player Settings panel i can't left click on anything. It is set to deny but I can't click allow, or close or any of the icons.
    Right click does work.
    I have followed countless instructions in other forums from other posts that have encountered the problem on Mac and older versions of AFP but as yet none of the solutions have proven succesul.
    I have tried all of the following but nothing has resolved the problem.
    1. Uninstall and reinstall Adobe Flash Player (although this is impossible using Google Chrome) and restart computer.
    2. Unistall flash and install older version. (made no difference on Google Chrome and on IE8 had no flash whatsoever).
    5. Uninstall older AFP and reinstall AFP11.
    4. Uninstall Google Chrome and restart computer.
    5. Uninstall QuickTime (I got this off http://www.techsupportforum.com/forums/f10/flash-player-not-working-properly-please-help-1 61552.html) and restart computer
    6. Last resort use keyboard shortcuts such as tab, enter and ctrl+arrows. This either didn't highlight the panel at all or if it did I still couln't select allow, or close the panel itself so was no help either.
    So now I'm back to square one.
    Now here's a really bizarre thing... I am using a shared laptop computer and if I use my colleagues profile where she hasn't updated her AFP to Adobe Flash Player 11 the settings panel is responding just fine. IT'S THE SAME PC!
    I know I am alone with this problem but someone out there has an answer. If you can help please let me know how to fix this problem where I can't left click in the Adobe Flash Player settings panel.and I will be eternily grateful.
    many thanks
    nik

    OK the amount I hate myself right now is more than a fat guy's self loathing for raiding the fridge at 2am for Pizza but less than an armed robber who's accidentally shot a pregnant woman in the stomach during a shootout. but not much less.
    So after I had miraculously got the Flash Player Setting Panel to work again, (after deleting QuickTime and leaving the window open for abut an hour it just started working again) I then got enticed into downloading the ustream producer software.
    While downloading it informed me that it would only work with QuickTime.
    Stupidly and Optimistically hoping it would remove the need to use flash player altogether I downloaded and installed both.
    I then discovered to my horror that Ustream producer is not a patch on Vidbalster and that it was not capable of delivering the same level of broadcast.
    I then opened the flash player settings panel on ustream and... the problem has returned!
    This means I am 99% sure that QuickTime IS the cause of the problem so I have uninstalled QT off the PC. I have also uninstalled Ustream Producer.
    The thing is though, now no matter how many times I restart, or uninstall and reinstall Adobe, or Google Chrome, I am once again UNABLE TO LEFT CLICK IN THE FLASH PLAYER SETTINGS PANEL. AAAARRRRRGGGGHHHH!!!!
    What did I do? I fixed it and  f***ing broke it again!
    Now it properly will not come back to life! the problem is not solved and i urgently need help.
    Why does Adobe Flash Player Settings Panel and Apple QuickTime hate each other so much that they've got to ruin my life?
    Help forum PLEASE!
    Regards,
    nik

  • After new hard drive, Leopard installed, cannot log in - Help Please!

    The local Apple store installed a new hard drive and Leopard on my G5 desktop yesterday. I attempted to restore my applications and documents, using Time Machine from my external G-Drive but am getting the message "you may need to enter the name and password for an administrator on this computer to change the item (Turbo Tax Premier 2007)". I also tried to install the application iWork which I purchased and it too would not let me because it was asking for a password. I typed my old password and user name that I had given to the Apple store (they asked me for it) but it was not accepted or recognized. Should I return to the Apple store and let them do this for me, or is there a reason my password and user name is not being recognized? Also, I do not have the Leopard DVD that they installed from to make any changes or reset the password (I have the original Leopard that I purchased when it became available but hesitate to use it since it caused my Mail App to become corupt which was the reason I went to the Apple Store in the first place as my other Leopard applications and system seemed to be working ok - but when they attempted to reinstall the OS, that's when they called me and said I needed a new hard drive since the attempted installation failed.) Sorry about rambling on, but wanted to give you as much info as possible about my situation and would appreciate any suggestions and help.
    Will I have to reinstall all my applications such as Quicken, TurboTax, iLife, ect or should they be restored from my G-Drive? I'm worried about loosing my "documents" as they were created using the older "Appleworks" application; that's why I purchased iWork, to transfer them to.
    Thanks again.
    Charles

    Just thought I'd refresh my recent post to see if any of you current viewers might have a suggestion as how to fix my problem with the "log in". I really appreciate any ideas on this subject.
    Thanks,
    Charles Adam

  • Macbook pro crashes in sleep mode ALL the time - with LOG. HELP!

    Hi there,
    My macbook pro 13' intel 2.26 5 GB RAM, currently running Mac Os Lion 10.7.1 constantly crashes when going to sleep mode. This happens regardless of the lid being closed or not.
    Here's the log from the last crash.. hope it helps anyone giving me a hint ! Thanks
    Process:         rapportd [196]
    Path:            /Library/Rapport/*/rapportd
    Identifier:      rapportd
    Version:         ??? (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [131]
    Date/Time:       2011-09-15 15:20:19.620 +0100
    OS Version:      Mac OS X 10.7.1 (11B26)
    Report Version:  9
    Crashed Thread:  4
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000820f0000
    VM Regions Near 0x820f0000:
        mapped file            0000000002000000-0000000002f89000 [ 15.5M] r--/r-x SM=ALI  /usr/share/icu/icudt46l.dat
    -->
        __TEXT                 000000008fe50000-000000008fe83000 [  204K] r-x/rwx SM=COW  /usr/lib/dyld
    Application Specific Information:
    objc[196]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x963e6066 __write_nocancel + 10
    1   libsystem_c.dylib                       0x909091f9 __swrite + 35
    2   libsystem_c.dylib                       0x9090910f _swrite + 125
    3   libsystem_c.dylib                       0x9090a9aa __sflush + 127
    4   libsystem_c.dylib                       0x9090a912 fflush + 89
    5   rapportd                                0x000215bc logfile_safe_write_int + 272
    6   rapportd                                0x00018cbb env_logcore_write_to_logfile + 57
    7   rapportd                                0x0001a0e5 write_permitted_to_logfile + 67
    8   rapportd                                0x0001975d pool_map + 87
    9   rapportd                                0x0001bb65 flush_env_buffers + 125
    10  rapportd                                0x0001d215 message_to_logfile + 103
    11  rapportd                                0x0001d32a env_log_message + 101
    12  rapportd                                0x0001fb35 counters_stat + 190
    13  rapportd                                0x00003246 main_helper() + 1614
    14  rapportd                                0x0000231a start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x963e690a kevent + 10
    1   libdispatch.dylib                       0x9a58cccc _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x9a58b71b _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x963e602e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9090eccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x909106fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x963e602e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9090eccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x909106fe start_wqthread + 30
    Thread 4 Crashed:
    0   ???                                     0x820f0000 0 + 2182021120
    1   libsystem_c.dylib                       0x9090ced9 _pthread_start + 335
    2   libsystem_c.dylib                       0x909106de thread_start + 34
    Thread 4 crashed with X86 Thread State (32-bit):
      eax: 0x820f0000  ebx: 0x0002c5b3  ecx: 0xbffff8d0  edx: 0xbffff8cc
      edi: 0xbffff8d8  esi: 0x0044d500  ebp: 0xb0288f98  esp: 0xb0288f3c
       ss: 0x00000023  efl: 0x00010246  eip: 0x820f0000   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x820f0000
    Logical CPU: 0
    Binary Images:
        0x1000 -    0x64fff +rapportd (??? - ???) <42DCBC21-A454-8034-CF9D-F0538E4D15FB> /Library/Rapport/*/rapportd
       0xaf000 -   0x147ff7 +RapportWR.dylib (??? - ???) <A50472EA-F9E8-3C45-E173-216263532AEC> /Library/Rapport/*/RapportWR.dylib
      0x16e000 -   0x2fafeb +RapportUtil1.dylib (??? - ???) <1498F0C2-822D-A50A-5FF3-9742F51AA8E7> /Library/Rapport/*/RapportUtil1.dylib
      0x3f8000 -   0x420fef +librooksbas.dylib (??? - ???) <47AE683D-276B-AE68-1638-15CE02868140> /Library/Rapport/*/librooksbas.dylib
      0x70b000 -   0x715ff7 +com.unsanity.smartcrashreports (Smart Crash Reports version 1.5 - 1.5) <6C3A0534-B3B8-FB9E-D49E-E9B37DC03B57> /Library/InputManagers/*/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
    0x8fe50000 - 0x8fe829c7  dyld (195.5 - ???) <134323A7-49DC-3A9D-ACFD-32FAD0FD6BA2> /usr/lib/dyld
    0x90005000 - 0x90125fec  com.apple.vImage (5.0 - 5.0) <173F6343-07EE-39F7-A159-DD3837E473DE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90126000 - 0x901fca5b  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <A0EDB351-4B9D-3AA2-9D1A-0C22204FCCD3> /usr/lib/libobjc.A.dylib
    0x90435000 - 0x90540ffb  com.apple.DesktopServices (1.6.0 - 1.6.0) <66E2BD3A-958A-3F46-8DA0-C0F2358013B0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x908b0000 - 0x9097bfff  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <44AA09FD-3A8F-3DCF-AD98-BC9071CA7376> /usr/lib/system/libsystem_c.dylib
    0x9097c000 - 0x90991ff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90a1c000 - 0x90a44ff0  com.apple.CoreServicesInternal (113.7 - 113.7) <F5724FAC-8BB8-3F0F-B8BC-36F2CA75A23D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x90a45000 - 0x90adcff3  com.apple.securityfoundation (5.0 - 55005) <F5A98CC2-11C6-34F3-8F72-75B642627630> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x90add000 - 0x90bc5fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <ED3F5E83-8C76-3D46-B2FF-0D5BDF8970C5> /usr/lib/libxml2.2.dylib
    0x90bc6000 - 0x90c61ff3  com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90cc0000 - 0x90d27fff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x90d28000 - 0x90d29fff  com.apple.TrustEvaluationAgent (2.0 - 1) <EABDA7EE-A98F-35B8-9E3E-7075BA651C68> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x90d2a000 - 0x90d32ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x90d41000 - 0x91196fff  FaceCoreLight (1.4.2 - compatibility 1.0.0) <53AC5DCE-D04B-3DC3-808D-AA1CAD4D0924> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x91197000 - 0x912a6ff7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <01987A45-9270-30FD-8A67-5E53DB637909> /usr/lib/libsqlite3.dylib
    0x912de000 - 0x91477ff7  com.apple.CoreData (103 - 358.4) <EB07F3A5-6301-3DA4-96FC-F8381D148C69> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x914c7000 - 0x914e0fff  libPng.dylib (??? - ???) <2C47E152-240A-36A7-87A8-3856EDFF2FE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91baa000 - 0x91beaff7  libauto.dylib (??? - ???) <36E7FE7F-27DF-3301-80AA-DD61FBF722F4> /usr/lib/libauto.dylib
    0x91beb000 - 0x91beeffb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91e7f000 - 0x91e80fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x91ec0000 - 0x91ec4ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x91eff000 - 0x91fa3fff  com.apple.QD (3.12 - ???) <68CBE425-43BA-3E6D-8668-A4A67396E20D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x921c4000 - 0x921c5ff7  libsystem_sandbox.dylib (??? - ???) <BC0A04E9-4F28-3BC8-AA7B-63C3451E9212> /usr/lib/system/libsystem_sandbox.dylib
    0x92205000 - 0x92205fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
    0x92254000 - 0x92255ff5  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <9A1E12B7-F822-3544-8E1D-A6DC81E1F2E6> /usr/lib/system/libremovefile.dylib
    0x92257000 - 0x92cdcffe  com.apple.AppKit (6.7 - 1138) <1CEDE402-32DD-3C10-B3B3-8C3DDBE8335D> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92cdd000 - 0x92d3fffb  com.apple.datadetectorscore (3.0 - 179.3) <18117942-9D6F-3283-B8B0-03C7550CA2EB> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92d40000 - 0x92d91ff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x92d92000 - 0x93043ff7  com.apple.security (7.0 - 55010) <28168576-1B8C-3FE8-9356-DE79390A480A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93044000 - 0x93127ff7  libcrypto.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <6E631200-1E22-37B9-85D1-EC40520891AB> /usr/lib/libcrypto.0.9.8.dylib
    0x931a3000 - 0x93272ffb  com.apple.ImageIO.framework (3.1.0 - 3.1.0) <A482C10A-C474-39DC-AB3C-EADBCF3A433B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x940da000 - 0x940deff7  com.apple.OpenDirectory (10.7 - 144) <A117580D-FD86-381E-82FD-B1A040045031> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x940df000 - 0x940e0ff7  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <70782AEC-8933-3EB4-91CA-E44C0E768C90> /usr/lib/system/libquarantine.dylib
    0x940e1000 - 0x940e5ffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x940e6000 - 0x941a6ff3  com.apple.ColorSync (4.7.0 - 4.7.0) <50767823-56BA-373D-BC5A-37B17B659838> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x941fa000 - 0x941fafff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94221000 - 0x9424ffe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <FA9B75F7-B989-3DD3-97FD-373EB95C5BA8> /usr/lib/libSystem.B.dylib
    0x94254000 - 0x9425dff3  com.apple.CommonAuth (2.1 - 2.0) <94EA2555-212C-3704-8307-FCEE5D6D32C5> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9425e000 - 0x9425efff  com.apple.vecLib (3.7 - vecLib 3.7) <A01CD788-26FB-320F-8617-5A7DF0F9031E> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9425f000 - 0x94279fff  com.apple.Kerberos (1.0 - 1) <25E5A286-876D-3A8E-A12F-52D184559E8C> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9427a000 - 0x9433afff  com.apple.CoreServices.OSServices (478.25.1 - 478.25.1) <7971F047-D9EF-3D9C-A65F-E5A8C6CECF06> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x943bc000 - 0x943bfff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x9442d000 - 0x94456ffe  com.apple.opencl (1.50.62 - 1.50.62) <52059AB5-8E0D-356E-98AA-71A4777CBE57> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x94457000 - 0x94464fff  libGL.dylib (??? - ???) <C1C549FC-FF7F-3012-9DF5-5255217B4AEA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x94465000 - 0x94475fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x94476000 - 0x94476ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x946c2000 - 0x946c6ff3  libsystem_network.dylib (??? - ???) <E1455F3E-549B-3D50-A38B-17B394F3C7F6> /usr/lib/system/libsystem_network.dylib
    0x946c7000 - 0x946efff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <FCAC685A-724F-3FE7-8416-146108DF75FB> /usr/lib/libxslt.1.dylib
    0x9485d000 - 0x9486bfff  com.apple.opengl (1.7.4 - 1.7.4) <C6DE3D3A-CC1F-3F55-B8DD-2637FA40058F> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9486c000 - 0x94870fff  libGIF.dylib (??? - ???) <F6094267-AB0E-38FC-8201-510AA4BDC974> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94871000 - 0x94879ff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x94892000 - 0x94896fff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94b08000 - 0x94b38ff7  libsystem_info.dylib (??? - ???) <C385F5A9-458A-3B49-9CC7-EA81DC5F9141> /usr/lib/system/libsystem_info.dylib
    0x94c23000 - 0x94c88ff7  libvDSP.dylib (325.3.0 - compatibility 1.0.0) <1C4B66EB-3186-31BE-B93F-878E49334C49> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94cc5000 - 0x94cc5ff2  com.apple.CoreServices (53 - 53) <C513E133-B0E0-3C35-A7CB-DBC35A7EF571> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94cc6000 - 0x94d16ff4  libTIFF.dylib (??? - ???) <25796A90-ABD2-3A3A-800C-1056D343A71F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94d17000 - 0x94d18fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x94d19000 - 0x94d19fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <CB952B04-595A-332B-992B-7671815750FD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94d1a000 - 0x94d1afff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94e62000 - 0x95038fef  com.apple.CoreFoundation (6.7 - 635) <4EE0D62E-5342-3A9F-A740-DA1D5AEBB1B0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x95039000 - 0x9569e65b  com.apple.CoreGraphics (1.600.0 - ???) <DD3B7ADA-0F19-371E-BB87-F3C08464134A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x956ba000 - 0x956dcffe  com.apple.framework.familycontrols (3.0 - 300) <AE51B604-D32D-32F7-AEDC-B1C4EB7191C6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x95712000 - 0x95873ffb  com.apple.QuartzCore (1.7 - 269.0) <221FF6A0-9C2C-3977-BC2A-A84C392BA49B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95874000 - 0x9596cff7  libFontParser.dylib (??? - ???) <C428D41A-8635-3423-A2F0-8BA9819F212B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9596d000 - 0x95974ff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
    0x95975000 - 0x9597cffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x95a56000 - 0x95a84ffb  com.apple.DictionaryServices (1.2 - 158) <C614930F-520D-3F77-AD0D-0E16FBCB98CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x95a85000 - 0x95addfff  com.apple.HIServices (1.9 - ???) <058E00E0-F1B4-395F-813E-C49C0C5F3BA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95ade000 - 0x95c92ff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6270318A-CA9A-376C-AD6D-64A9B4B4A26E> /usr/lib/libicucore.A.dylib
    0x95c93000 - 0x95c94ffd  libCVMSPluginSupport.dylib (??? - ???) <8057030D-B290-3A8B-9828-3A1BD123B124> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x95f13000 - 0x95f29ffe  libxpc.dylib (77.16.0 - compatibility 1.0.0) <2EAF3E13-19FA-3EF2-88D6-64ACBC3A6ADB> /usr/lib/system/libxpc.dylib
    0x95f44000 - 0x95f6ffff  com.apple.GSS (2.1 - 2.0) <129F4AB0-41AC-3713-A7BC-921769B0E12D> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x95f70000 - 0x95f7aff2  com.apple.audio.SoundManager (3.9.4 - 3.9.4) <D23C4761-6492-3974-B4D2-495082B8B7A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95f7b000 - 0x95fb7ffa  libGLImage.dylib (??? - ???) <7A150184-E3F7-3773-917A-A5E24B9241FA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96315000 - 0x9636eff3  com.apple.coreui (0.3 - 162) <BD3FBC84-234A-38E0-AA29-DE0424D3FD16> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9636f000 - 0x96372ffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x963cd000 - 0x963ebff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
    0x964a6000 - 0x96533fe7  libvMisc.dylib (325.3.0 - compatibility 1.0.0) <A44ADE1B-AB2C-3585-8C9D-D85B526E66C0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x965f5000 - 0x965f5fff  com.apple.audio.units.AudioUnit (1.7 - 1.7) <75E38B34-1DE2-337A-A09F-0F7E91C02ABB> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x96602000 - 0x96645ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x969b1000 - 0x969b2fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x969b3000 - 0x969b6ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x969b7000 - 0x96a2cfff  com.apple.Metadata (10.7.0 - 627.9) <1EF7D615-3DF4-3F5D-88CE-6BDFA120FE32> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x96a2d000 - 0x96a2fff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x96a30000 - 0x96d30fff  com.apple.CoreServices.CarbonCore (960.13 - 960.13) <E098AC3A-E795-3C28-BA92-EED51C461A6F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96d31000 - 0x96d39ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x96d3a000 - 0x96d45fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x96f2c000 - 0x96fc0ff7  com.apple.LaunchServices (480.19 - 480.19) <A68C0688-4ED1-35F1-BF44-F5B1917084A0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x97018000 - 0x97129ff7  libJP2.dylib (??? - ???) <E938C201-C508-3E3D-B9A9-81FE52349E1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9712a000 - 0x97160fff  com.apple.DebugSymbols (2.1 - 85) <0F996A4A-16A7-3C90-8037-0E2958D1FB16> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x97161000 - 0x97163ff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x974ac000 - 0x974aeffb  libRadiance.dylib (??? - ???) <5112B7CE-BAAF-3E98-94E4-676BCB92867F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x976ca000 - 0x976cafff  com.apple.Accelerate (1.7 - Accelerate 1.7) <881C1C85-2DEC-38DE-BC97-7804BC907282> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x976cb000 - 0x97746ffb  com.apple.ApplicationServices.ATS (5.0 - ???) <8DF22F1E-7600-3ADA-BFC1-F6FA79914171> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9774d000 - 0x9783dff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x9783e000 - 0x97843ffd  libGFXShared.dylib (??? - ???) <7C55BE22-CDB5-3192-B7F0-96EA754A20AC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9800a000 - 0x9840cff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9840d000 - 0x98430fff  com.apple.CoreVideo (1.7 - 70.0) <0CBE6F3B-34C7-3C6B-9BB1-826F9905ECC1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98431000 - 0x98444ff9  com.apple.MultitouchSupport.framework (220.62 - 220.62) <5BD8730D-43A4-3040-9EA3-0BDA52A392A9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x984f9000 - 0x9850dff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x98577000 - 0x9857dffb  com.apple.print.framework.Print (7.0 - 247) <1140BB03-0720-308F-8D92-F71B347D63D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x985b3000 - 0x98617fff  com.apple.framework.IOKit (2.0 - ???) <B5888D02-8C36-3404-A37E-7457D950D629> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x98618000 - 0x9863aff1  com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x986aa000 - 0x986b3fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x98ab5000 - 0x98af1fff  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <8CB51735-ABE4-37AD-9019-845BB768955F> /usr/lib/libcups.2.dylib
    0x98af2000 - 0x98d63ffb  com.apple.CoreImage (7.77 - 1.0.1) <DF1D9EB7-5879-3EA2-8CF5-80004DAC18BC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x98e3e000 - 0x98e9bffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x98e9c000 - 0x98ea1ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x98ea2000 - 0x98ebfff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x98ec0000 - 0x98ecefff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x98ef9000 - 0x98effffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9905a000 - 0x9906aff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x9906b000 - 0x99072fff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <B3B3875D-311D-31A7-A09F-D1BC56795E00> /usr/lib/system/libnotify.dylib
    0x9907e000 - 0x9955aff6  libBLAS.dylib (??? - ???) <327C1517-2B63-3D8C-8D8E-CB4EBA2A9C36> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9955b000 - 0x995c5ff3  com.apple.CoreSymbolication (2.1 - 66) <B11C9057-1611-36A5-81F6-2C97A7047321> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x9960a000 - 0x9990dff7  com.apple.Foundation (6.7 - 833.1) <94BFFEDD-0676-368D-B4C6-8784E1DA4306> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9990e000 - 0x99919ffc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9991a000 - 0x99950ff7  com.apple.AE (527.6 - 527.6) <77999151-94E3-37CD-A49E-7A9F9084F886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x99951000 - 0x99c90ff3  com.apple.HIToolbox (1.7 - ???) <A9583F07-218D-35CD-B29C-C65E6D008836> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9a3be000 - 0x9a510ffb  com.apple.audio.toolbox.AudioToolbox (1.7 - 1.7) <5767C518-343D-36DB-8D59-C72986161AEC> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9a58a000 - 0x9a598fff  libdispatch.dylib (187.5.0 - compatibility 1.0.0) <1883C8E2-D180-3EA0-8BEF-325F2FEDACD1> /usr/lib/system/libdispatch.dylib
    0x9a599000 - 0x9a59cffd  libCoreVMClient.dylib (??? - ???) <1438A7D5-A622-3623-A49F-45F881B1D947> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9a59d000 - 0x9a59dff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9a95c000 - 0x9a96dfff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x9a96e000 - 0x9a9f8ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <C8567435-9CD1-35EE-AE05-304D28858C42> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9b45c000 - 0x9b47bfff  com.apple.RemoteViewServices (1.0 - 1) <D9810485-6A62-3758-96F5-48950AF250F1> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x9b47c000 - 0x9b4c5ff7  libGLU.dylib (??? - ???) <3524C956-C8B2-3E8B-805D-9E25E5481A58> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9b7c5000 - 0x9bc6bfeb  com.apple.RawCamera.bundle (3.8.0 - 577) <E49AF1AA-A663-9CC9-D015-28968F253339> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9bc6c000 - 0x9bcdafff  com.apple.Heimdal (2.1 - 2.0) <5BA5BFA4-0B05-3B00-AF06-C3D0D60F36BC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9bcdb000 - 0x9bd62fff  com.apple.print.framework.PrintCore (7.0 - 366) <D037D344-7463-3620-AE8F-8D0D3EA5CE8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9bd63000 - 0x9bd80fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <95AE43ED-6C52-3B39-89B6-54C81C62F1FF> /usr/lib/libresolv.9.dylib
    0x9bdd0000 - 0x9be2cff3  com.apple.Symbolication (1.2 - 83.1) <E651A2F1-CC13-3DDD-9B0A-09180014966B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x9be71000 - 0x9bf9aff9  com.apple.CFNetwork (520.0.13 - 520.0.13) <B21DE9ED-1D99-39C0-9E24-77D2A48FBFEF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9bf9b000 - 0x9bffdff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x9c38a000 - 0x9c39ffff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9c3a0000 - 0x9c42cff7  com.apple.CoreText (4.0.0 - ???) <2ADB0C1E-FE27-371C-8EC3-69D5CFEA2BE7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9c47d000 - 0x9c47eff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x9c4ef000 - 0x9c4f7fff  com.apple.DiskArbitration (2.4 - 2.4) <E574D5E7-7297-33B5-8B91-1E6346D5F917> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9c4f8000 - 0x9c558ffb  com.apple.audio.CoreAudio (4.0.0 - 4.0.0) <6026C895-3DC6-3785-A7BB-2F2B9E292D95> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9c55c000 - 0x9c5a3fff  com.apple.SystemConfiguration (1.11 - 1.11) <A7769080-2A4F-36AF-9484-08A936690307> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9c5b6000 - 0x9c5c1ffb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <17C11291-5B27-3BE2-8614-7A806745EE8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9c5ca000 - 0x9c61afff  libFontRegistry.dylib (??? - ???) <BC35B8F5-7CCA-3A04-A278-FA3306B2C4F8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9c61b000 - 0x9c659fff  com.apple.NavigationServices (3.6 - 192) <CB7AE807-9292-3EBA-A5F5-D7DCEE28A5B7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9c68e000 - 0x9c6aaff5  com.apple.GenerationalStorage (1.0 - 124) <0BC29510-6C26-3445-88B7-21502CAFF372> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9c728000 - 0x9c74dff9  libJPEG.dylib (??? - ???) <5872B388-D6CC-3DD4-A2F3-8BB464E83D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 308
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=133.7M resident=82.6M(62%) swapped_out_or_unallocated=51.1M(38%)
    Writable regions: Total=31.6M written=780K(2%) resident=1220K(4%) swapped_out=0K(0%) unallocated=30.4M(96%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                     96K
    CoreServices                       1896K
    MALLOC                             21.3M
    MALLOC guard page                    48K
    Stack                              66.0M
    VM_ALLOCATE                          76K
    __CI_BITMAP                          80K
    __DATA                             8272K
    __DATA/__OBJC                        68K
    __IMAGE                            1256K
    __IMPORT                              4K
    __LINKEDIT                         42.8M
    __OBJC                             1392K
    __OBJC/__DATA                        32K
    __PAGEZERO                            4K
    __TEXT                             90.9M
    __UNICODE                           544K
    mapped file                       126.9M
    shared memory                       312K
    shared pmap                        10.0M
    ===========                      =======
    TOTAL                             371.8M

    Hi Riquier
    Sorry to hear about your problem,
    I would say the best place to start is using apple diagnostics, if the problem is hardware related we find it quickly.
    http://support.apple.com/kb/ht1509
    Please post your results.
    Good luck.
    Dr. C.

  • Kernal panic log need help interpreting

    My iMac crashes with a Kernal panic shutdown message. It happens very spartic but it always seems to be while I am using Safari and my Kensington mouse. Here is the last crash panic log from the console. Can anyone help me figure this out? Thanks, Dave
    Fri Jan 30 20:17:23 2009
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000000000084 PC=0x00000000000643A8
    Latest crash info for cpu 0:
    Exception state (sv=0x3BFA8280)
    PC=0x000643A8; MSR=0x00009030; DAR=0x00000084; DSISR=0x40000000; LR=0x0006438C; R1=0x21E8B8E0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x0006438C 0x00063E14 0x00069A8C 0x00069D54 0x0006528C 0x00040154
    0x0001A308 0x0001AA8C 0x000295C8 0x004C41F0 0x002D1B8C 0x002D0A54 0x000A9714
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.iokit.IOHIDFamily(1.4.13)@0x4a5000
    Proceeding back via exception chain:
    Exception state (sv=0x3BFA8280)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x00BFD500)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x000954F8 0x00095A10 0x00026898 0x000A8204 0x000ABB80
    Proceeding back via exception chain:
    Exception state (sv=0x3BFA8280)
    PC=0x000643A8; MSR=0x00009030; DAR=0x00000084; DSISR=0x40000000; LR=0x0006438C; R1=0x21E8B8E0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x0006438C 0x00063E14 0x00069A8C 0x00069D54 0x0006528C 0x00040154
    0x0001A308 0x0001AA8C 0x000295C8 0x004C41F0 0x002D1B8C 0x002D0A54 0x000A9714
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.iokit.IOHIDFamily(1.4.13)@0x4a5000
    Exception state (sv=0x00BFD500)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    Mac OS X Version 10.4.11 (Build 8S165)
    2009-01-30 20:17:11 -0600
    2009-01-30 20:17:12.728 HPEventHandler[148]: DebugAssert: Third Party Client: ((__null) != m_lock && 0 == (*__error())) Can't create semaphore lock [/Volumes/Development/Projects/HP/MacRubens_Branch/mac-aio/core/HPEventHandler/ Sources/HPTMNotificationManager.cpp:59]
    Jan 30 20:17:12 dave-taverners-imac-g5 mDNSResponder: Adding browse domain local.
    Kensington FastUserSwitch: Session On Console
    Kensington FastUserSwitch: Session User ID = 501
    Kensington FastUserSwitch: Installing User Switch Notifications
    2009-01-30 20:17:14.647 HimmelBar[146] HimmelBar is starting...
    2009-01-30 20:17:15.116 SystemUIServer[87] lang is:en
    2009-01-30 20:17:27.828 browseback[134] Safari history path established: /Users/Dave/Library/Safari/History.plist
    2009-01-30 20:17:28.202 browseback[134] Firefox history path established: /Users/Dave/Library/Application Support/Firefox/Profiles/n83cb4ez.default/places.sqlite
    2009-01-30 20:18:16.168 browseback[134] killed BBPageLoader process older than 240s
    2009-01-30 20:18:16.168 browseback[134] * NSRunLoop ignoring exception '* -[NSConcreteTask terminate]: task not launched' that raised during posting of delayed perform with target 1b6fc00 and selector 'checkTasks'

    I didn't see a clue. Understanding crash logs isn’t easy and it’s hard (sometimes impossible) to decipher the cause of the problem. Take a look at Apple’s Crash Reporter document at http://developer.apple.com/technotes/tn2004/tn2123.html
    Also look at Tutorial: An introduction to reading Mac OS X crash reports
    http://www.macfixit.com/article.php?story=20060309075929717
    Kernel panics are usually caused by a hardware problem – frequently RAM, a USB device or a Firewire device. When trying to troubleshoot problems, disconnect all external devices except your kbd & mouse. Do you experience the same problems? Do you have another mouse you could use?
    May be a solution on one of these links.
    Mac OS X Kernel Panic FAQ
    Mac OS X Kernel Panic FAQ
    Resolving Kernel Panics
    Avoiding and eliminating Kernel panics
    12-Step Program to Isolate Freezes and/or Kernel Panics
     Cheers, Tom

  • Mail server has just stopped working. No errors in any log. Help!

    I am running OS X Server 3.0.2 on Mavericks 10.9.1. Today at around 14:30 my Mail server, which has been working fine for over a year and for nearly a month under Server 3.0.2 just stopped working! I have tried stopping and starting Mail in Server.app and via ServerAdmin but the servcies will not start... serveradmin claims that IMAP is running but that SMTP/SMTPD/Virus Scanner/SPAM filtering/Virus updating are not. I tried disabling the all the filtering services but to no avail. Even though it claims IMAP is running I cannot connect from any client...
    I have rebooted the machine but this did not help. I have looked at all the logs (system, mail, dovecot, postfix, amavis) and theer are no suspicious messages in any of them!
    I am out of ideas and my mail server is down which is very serious so if anyone has any ideas please pitch in.
    Thanks.

    My problems were:
    1.    Server.app shows the Mail service stuck in 'starting' status
    2.    serveradmin shows that IMAP is running but SMTPD, Spam filtering, Virus filtering and Virus updating were STOPPED.
    3.    No clients could connect to either IMAPS or SMTP.
    Diagnostics performed:
    All the various messafge logs (system.log, Mail.log, mail-info.log mail-err.log, amavis.log) show no abnormal messages.
    DNS is working just fine.
    In the end I did the following:
    1.    Stop all mail related services.
    2.    Make a safe copy of /Library/Server/Mail/Config
    3.    Restore the previous days version of /Library/Server/Mail/Config from backup.
    4.    Start the Mail service
    And all was working again just fine.
    I then did a file by file compare of all the configuration files between the workign and not working configurations and I found just the following two differences in postfix/main.cf:
    Not working:
    inet_interfaces = loopback-only
    smtpd_helo_required = no
    Working:
    inet_interfaces = all
    smtpd_helo_required = yes
    I don't think the second difference is so critical but the first seems to break everything (not too surprising I guess). All the other files were identical.
    So, the good news is that all is working again but the huge concern is why this change happenned, seemingly at random. My strong suspicion is that Server.app, at some point when I exited it havign made some minor change unrelated to mail decided to apply these incorrect changes to the Mail configuration. Why it would do this is beyond me. I think there are some subtle bugs in Server 3.0 (and maybe Server 2.2 as well)...

  • FaceTime reports Network failure while logging! help appreciated

    I upgraded my intel Imac software to Os X 10.7.2. While logging on to  FaceTime - reports "error in network connection. check with your sevice provider" and my net connection drops very frequently since the upgrade from snow leopard.
    On my Ipad I can successfully logon to FaceTime on the same network! I have Mac Keeper antivirus software installed. Seek help. Thanks.

    I don't have a solution to your problem, but I would recommend getting rid of MacKeeper now. It will cause you a LOT more trouble than it's worth.

Maybe you are looking for