Tomcat Crashes for JNI ?

Hello everyone,
I am facing a serious problem. This is as follows:
1. I have wrote some audio/video conversion fuctions using C and make the shared library (*.so files) in linux.
2. I have wrote the JNI code (making it shared library also, *.so file) to access the library functions created in step 1.
3. Then I use JAVA and Java Native codes to use the JNI. I load the library created by JNI code with Java.
4. Finally, I have created a JSP page. Actuall JSP page acts as the conversion client program of audio/video conversion.
The problem is:
If I open the JSP page in one browser , the conversion is successfull.
But when I open two browsers and try to convert at the same time, the tomcat crashes, so conversion fails.
Why tomcat crashes ? Is it for JNI ? Is there any JNI drawbacks for such case ?
It will be greate help, if someone can answer.
Thanks in advanced.
James

I used the following page and was not able to reproduce the problem:
<%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
<jbo:ApplicationModule id="Mypackage1Module" definition="Project2.Mypackage1Module" releasemode="Stateful" />
<%@ page contentType="text/html;charset=windows-1252"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>
Hello World
</title>
</head>
<jbo:RowsetNavigate datasource="Mypackage1Module.DeptView1" action="first" />
<body>
<% for(int i = 0; i < 1000; i++)
%>
<br>Department name(<%= "" + i %>):
<jbo:ShowHint dataitem="Dname" datasource="Mypackage1Module.DeptView1" hintname="LABEL" />
<jbo:ShowValue datasource="Mypackage1Module.DeptView1" dataitem="Dname" ></jbo:ShowValue>
<%
%>
</body>
</html>
<jbo:ReleasePageResources />

Similar Messages

  • Tomcat crashes while running servlet chat in IE

    Hi all!
    I've seen similar problems posted about three years ago, but I didn't see an answer for it.
    I'd be very grateful if you could help me.
    I'm writing a chat, the code was taken from the J.Hunter "Servlet programming book" O'reilly, "absurdly simple chat", and adjusted (I only need the Http version). It's an applet-servlet chat.
    When executed in IE, Tomcat crashes after a few (usually 5) sent messages. When executed in a debugger (I use Forte, the last available version, 4 update 1) the program works just fine...
    Another question is about debugging an applet, executed in a browser - how do I do this?
    Here is the code for the servlet:
    =================================
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class TryChatServlet extends HttpServlet
    // source acts as the distributor of new messages
    MessageSource source = new MessageSource();
    // doGet() returns the next message. It blocks until there is one.
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    throws ServletException, IOException {
    res.setContentType("text/plain");
    PrintWriter out = res.getWriter();
    // Return the next message (blocking)
    out.println(getNextMessage());
    // doPost() accepts a new message and broadcasts it to all
    // the currently listening HTTP and socket clients.
    public void doPost(HttpServletRequest req, HttpServletResponse res)
    throws ServletException, IOException {
    // Accept the new message as the "message" parameter
    String message = req.getParameter("message");
    // Broadcast it to all listening clients
    if (message != null) broadcastMessage(message);
    // Set the status code to indicate there will be no response
    res.setStatus(res.SC_NO_CONTENT);
    // getNextMessage() returns the next new message.
    // It blocks until there is one.
    public String getNextMessage() {
    // Create a message sink to wait for a new message from the
    // message source.
    return new MessageSink().getNextMessage(source);
    // broadcastMessage() informs all currently listening clients that there
    // is a new message. Causes all calls to getNextMessage() to unblock.
    public void broadcastMessage(String message) {
    // Send the message to all the HTTP-connected clients by giving the
    // message to the message source
    source.sendMessage(message);
    // MessageSource acts as the source for new messages.
    // Clients interested in receiving new messages can
    // observe this object.
    class MessageSource extends Observable {
    public void sendMessage(String message) {
    setChanged();
    notifyObservers(message);
    // MessageSink acts as the receiver of new messages.
    // It listens to the source.
    class MessageSink implements Observer {
    String message = null; // set by update() and read by getNextMessage()
    // Called by the message source when it gets a new message
    synchronized public void update(Observable o, Object arg) {
    // Get the new message
    message = (String)arg;
    // Wake up our waiting thread
    notify();
    // Gets the next message sent out from the message source
    synchronized public String getNextMessage(MessageSource source) {
    // Tell source we want to be told about new messages
    source.addObserver(this);
    // Wait until our update() method receives a message
    while (message == null) {
    try { wait(); } catch (Exception ignored) { }
    // Tell source to stop telling us about new messages
    source.deleteObserver(this);
    // Now return the message we received
    // But first set the message instance variable to null
    // so update() and getNextMessage() can be called again.
    String messageCopy = message;
    message = null;
    return messageCopy;
    =============================
    The code for the applet is
    =============================
    import java.applet.*;
    import java.awt.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class TryChatApplet extends Applet implements Runnable {
    TextArea text;
    Label label;
    TextField input;
    Thread thread;
    String user;
    public void init() {
    // Check if this applet was loaded directly from the filesystem.
    // If so, explain to the user that this applet needs to be loaded
    // from a server in order to communicate with that server's servlets.
    URL codebase = getCodeBase();
    if (!"http".equals(codebase.getProtocol())) {
    System.out.println();
    System.out.println("*** Whoops! ***");
    System.out.println("This applet must be loaded from a web server.");
    System.out.println("Please try again, this time fetching the HTML");
    System.out.println("file containing this servlet as");
    System.out.println("\"http://server:port/file.html\".");
    System.out.println();
    System.exit(1); // Works only from appletviewer
    // Browsers throw an exception and muddle on
    // Get this user's name from an applet parameter set by the servlet
    // We could just ask the user, but this demonstrates a
    // form of servlet->applet communication.
    user = getParameter("user");
    if (user == null) user = "anonymous";
    // Set up the user interface...
    // On top, a large TextArea showing what everyone's saying.
    // Underneath, a labeled TextField to accept this user's input.
    text = new TextArea();
    text.setEditable(false);
    label = new Label("Say something: ");
    input = new TextField();
    input.setEditable(true);
    setLayout(new BorderLayout());
    Panel panel = new Panel();
    panel.setLayout(new BorderLayout());
    add("Center", text);
    add("South", panel);
    panel.add("West", label);
    panel.add("Center", input);
    public void start() {
    thread = new Thread(this);
    thread.start();
    String getNextMessage() {
    String nextMessage = null;
    while (nextMessage == null) {
    try {
    URL url = new URL(getCodeBase(), "/servlet/TryChatServlet");
    HttpMessage msg = new HttpMessage(url);
    InputStream in = msg.sendGetMessage();
    DataInputStream data = new DataInputStream(
    new BufferedInputStream(in));
    nextMessage = data.readLine();
    catch (SocketException e) {
    // Can't connect to host, report it and wait before trying again
    System.out.println("Can't connect to host: " + e.getMessage());
    try { Thread.sleep(5000); } catch (InterruptedException ignored) { }
    catch (FileNotFoundException e) {
    // Servlet doesn't exist, report it and wait before trying again
    System.out.println("Resource not found: " + e.getMessage());
    try { Thread.sleep(5000); } catch (InterruptedException ignored) { }
    catch (Exception e) {
    // Some other problem, report it and wait before trying again
    System.out.println("General exception: " +
    e.getClass().getName() + ": " + e.getMessage());
    try { Thread.sleep(1000); } catch (InterruptedException ignored) { }
    return nextMessage + "\n";
    public void run() {
    while (true) {
    text.appendText(getNextMessage());
    public void stop() {
    thread.stop();
    thread = null;
    void broadcastMessage(String message) {
    message = user + ": " + message; // Pre-pend the speaker's name
    try {
    URL url = new URL(getCodeBase(), "/servlet/TryChatServlet");
    HttpMessage msg = new HttpMessage(url);
    Properties props = new Properties();
    props.put("message", message);
    msg.sendPostMessage(props);
    catch (SocketException e) {
    // Can't connect to host, report it and abandon the broadcast
    System.out.println("Can't connect to host: " + e.getMessage());
    catch (FileNotFoundException e) {
    // Servlet doesn't exist, report it and abandon the broadcast
    System.out.println("Resource not found: " + e.getMessage());
    catch (Exception e) {
    // Some other problem, report it and abandon the broadcast
    System.out.println("General exception: " +
    e.getClass().getName() + ": " + e.getMessage());
    public boolean handleEvent(Event event) {
    switch (event.id) {
    case Event.ACTION_EVENT:
    if (event.target == input) {
    broadcastMessage(input.getText());
    input.setText("");
    return true;
    return false;
    =====================================
    HttpMessage
    ======================================
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class HttpMessage {
    URL servlet = null;
    String args = null;
    public HttpMessage(URL servlet) {
    this.servlet = servlet;
    // Performs a GET request to the previously given servlet
    // with no query string.
    public InputStream sendGetMessage() throws IOException {
    return sendGetMessage(null);
    // Performs a GET request to the previously given servlet.
    // Builds a query string from the supplied Properties list.
    public InputStream sendGetMessage(Properties args) throws IOException {
    String argString = ""; // default
    if (args != null) {
    argString = "?" + toEncodedString(args);
    URL url = new URL(servlet.toExternalForm() + argString);
    // Turn off caching
    URLConnection con = url.openConnection();
    con.setUseCaches(false);
    return con.getInputStream();
    // Performs a POST request to the previously given servlet
    // with no query string.
    public InputStream sendPostMessage() throws IOException {
    return sendPostMessage(null);
    // Performs a POST request to the previously given servlet.
    // Builds post data from the supplied Properties list.
    public InputStream sendPostMessage(Properties args) throws IOException {
    String argString = ""; // default
    if (args != null) {
    argString = toEncodedString(args); // notice no "?"
    URLConnection con = servlet.openConnection();
    // Prepare for both input and output
    con.setDoInput(true);
    con.setDoOutput(true);
    // Turn off caching
    con.setUseCaches(false);
    // Work around a Netscape bug
    con.setRequestProperty("Content-Type",
    "application/x-www-form-urlencoded");
    // Write the arguments as post data
    DataOutputStream out = new DataOutputStream(con.getOutputStream());
    out.writeBytes(argString);
    out.flush();
    out.close();
    return con.getInputStream();
    // Converts a Properties list to a URL-encoded query string
    private String toEncodedString(Properties args) {
    StringBuffer buf = new StringBuffer();
    Enumeration names = args.propertyNames();
    while (names.hasMoreElements()) {
    String name = (String) names.nextElement();
    String value = args.getProperty(name);
    buf.append(URLEncoder.encode(name) + "=" + URLEncoder.encode(value));
    if (names.hasMoreElements()) buf.append("&");
    return buf.toString();
    Those files are the only files needed to execute the program.

    The whole Tomcat crashes, and no exception
    displayed.
    Do I have to write the log file, or it's kept by
    Tomcat itself?yes, tomcat writes a log file, you find it in the tomcat dir. but it's just very highlevel. Having a look in it could help.
    Is there a way to write a log file by myself?sure. you could get the log file from tomcat by getting it from the ServletContext:
    ServletContext = getServletContext();
    ServletContext.log("text to log");
    When I view the output window in Forte, it doesn't
    even write that Tomcat crashed.
    I use Tomcat that is installed with the last version
    of Forte(Sun 1 Studio, update 1), I guess it's the
    last version of Tomcat also.No. The lastest is 4.1.12 and i guess it's 4.0.4 with forte.
    Get Tomcat standalone from jakarta.apache.org and try to run your servlet with the standalone tomcat. this could help since i also expirenced problems sometimes with the forte-integrated tomcat.

  • Tomcat crashing

    Dear friends.,
    I am a novice in java and tomcat.My Java application is built using struts architechture and running on Tomcat 5.0 in Linux with MySQL as a backend.The Tomcat server is crashing often..in the sense it is abruptly shutting down.
    Can any please tell me the reasons for Tomcat crash??
    Should it be handled through the code or should the tomcat settings is to be changed.??
    Please help me.
    Thanx in advance

    take the log file and send we can figure it out...
    regards
    shanu

  • TOMCAT crash

    The problem is this:
    I designed a search page. There are tree select statement required for each seacrh button action on database. When i search squentially about 20 times, my application doesn't respond. What could be reason?
    Thans for helps.

    I have used default web application of netbeans 6.1 (JSF 1.2, JSTL 1.1, JSF 1.1/1.2 Support, Web UI Components, Web UI Default Theme libraries). Not only my application but also all applications on TOMCAT stop working when tomcat crashed. i think the bug is different because when i disable one of the tree select query i can search about 30 times.
    thanks

  • Photoshop CS4 and CC/CS6 crashing for no apparent reason (Windows 7)

    I’m currently having a serious problem with my Photoshop CS4 where it continuously crashes, for no apparent reason, since July 16, 2013.   I have done everything recommended via Adobe forum to try and fix this problem though it still persists.    It crashes randomly and I am usually unable to use Photoshop for more than 20 minutes. Below is the error message that appeared when Photoshop crashed,
    Error Message for CS4
    Problem signature:
      Problem Event Name:                        APPCRASH
      Application Name:                             Photoshop.exe
      Application Version:                           11.0.2.0
      Application Timestamp:                     4bf2d91c
      Fault Module Name:                          Photoshop.exe
      Fault Module Version:                        11.0.2.0
      Fault Module Timestamp:                  4bf2d91c
      Exception Code:                                  c0000005
      Exception Offset:                                00000000012a5a65
      OS Version:                                          6.1.7601.2.1.0.768.3
      Locale ID:                                             4105
      Additional Information 1:                  15b0
      Additional Information 2:                  15b00e7f3545ee6f25e3adf28ac2c415
      Additional Information 3:                  2d88
      Additional Information 4:                  2d887dc240f6e5f8c46c56c64c426343
    Since this incident, I thought that perhaps updating my Photoshop to the current version i.e. Photoshop CC would fix the problem.    However, after downloading and using the trial version of the current Photoshop CC, the same exact problem keeps happening.    This is the error message that appears when Photoshop CC crashes,
    Error Message for CS6/CC
    Problem signature:
      Problem Event Name:                        APPCRASH
      Application Name:                             Photoshop.exe
      Application Version:                           14.0.0.0
      Application Timestamp:                     5176451b
      Fault Module Name:                          Photoshop.exe
      Fault Module Version:                        14.0.0.0
      Fault Module Timestamp:                  5176451b
      Exception Code:                                  c0000005
      Exception Offset:                                00000000018702c5
      OS Version:                                          6.1.7601.2.1.0.768.3
      Locale ID:                                             4105
      Additional Information 1:                  f752
      Additional Information 2:                  f752287f27df649ff8ff774cb95d005f
      Additional Information 3:                  6103
      Additional Information 4:                  6103e8f4ea13b8f93bf26ab029428208
    My computer specs:
    Adobe Photoshop Version: 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:14, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2793 MHz
    Built-in memory: 8151 MB
    Free memory: 5155 MB
    Memory available to Photoshop: 7167 MB
    Memory used by Photoshop: 57 %
    Image tile size: 1024K
    Image cache levels: 4
    The GPU Sniffer crashed on 25/07/2013 at 4:19:46 PM
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.2 AMD-APP (1124.2)
    OpenGL Version: 3.0
    Video Rect Texture Size: 16384
    OpenGL Memory: 1024 MB
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: ATI Radeon HD 5570
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Video Card Number: 1
    Video Card: ATI Radeon HD 5570
    Driver Version: 12.104.0.0
    Driver Date: 20130328000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: ATI Radeon HD 5570
    Video Card Memory: 1024 MB
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\
    Temporary file path: C:\Users\Kim\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 920.1G, 781.2G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\
    Installed components:
       ACE.dll ACE 2013/03/19-12:09:02 79.535293   79.535293
       adbeape.dll Adobe APE 2013/02/04-09:52:32 0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   7.0.0
       AdobeOwl.dll   Adobe Owl 2013/03/03-12:10:08   5.0.13 79.533484
       AdobePDFL.dll   PDFL 2013/03/13-12:09:15   79.499517 79.499517
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1768
       AdobeXMP.dll   Adobe XMP Core 2013/03/13-12:09:15   79.151481 79.151481
       AdobeXMPFiles.dll   Adobe XMP Files 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPScript.dll   Adobe XMP Script 2013/03/13-12:09:15   79.151481 79.151481
       adobe_caps.dll   Adobe CAPS 7,0,0,21  
       AGM.dll AGM 2013/03/29-12:09:59 79.536232   79.536232
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31
       aif_core.dll   AIF 5.0   79.534508
       aif_ocl.dll AIF   5.0   79.534508
       aif_ogl.dll AIF   5.0   79.534508
       amtlib.dll AMTLib (64 Bit)   7.0.0.169 BuildVersion: 7.0; BuildDate: Mon Apr 8 2013 2:31:50)   1.000000
       ARE.dll ARE 2013/03/19-12:09:02 79.535293   79.535293
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830 66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830 66.26830
       Bib.dll BIB 2013/03/19-12:09:02 79.535293   79.535293
       BIBUtils.dll   BIBUtils 2013/03/19-12:09:02   79.535293 79.535293
       boost_date_time.dll   DVA Product 7.0.0  
       boost_signals.dll   DVA Product 7.0.0  
       boost_system.dll   DVA Product   7.0.0
       boost_threads.dll   DVA Product 7.0.0  
       cg.dll NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll NVIDIA Cg Runtime   3.0.00007  
       CIT.dll Adobe CIT   2.1.6.30158   2.1.6.30158
       CITThreading.dll   Adobe CITThreading   2.1.6.30158 2.1.6.30158
       CoolType.dll   CoolType 2013/03/19-12:09:02   79.535293 79.535293
       dvaaudiodevice.dll   DVA Product 7.0.0  
       dvacore.dll DVA Product   7.0.0  
       dvamarshal.dll   DVA Product 7.0.0  
       dvamediatypes.dll   DVA Product 7.0.0  
       dvaplayer.dll   DVA Product 7.0.0  
       dvatransport.dll   DVA Product 7.0.0  
       dvaunittesting.dll   DVA Product 7.0.0  
       dynamiclink.dll   DVA Product 7.0.0  
       ExtendScript.dll   ExtendScript 2013/03/21-12:10:31   79.535742 79.535742
       FileInfo.dll   Adobe XMP FileInfo 2013/03/19-12:09:02   79.151561 79.151561
       filter_graph.dll   AIF 5.0   79.534508
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       imslib.dll IMSLib DLL   7.0.0.37  
       JP2KLib.dll JP2KLib 2013/02/19-12:28:44 79.248139   79.248139
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession 2.1.2.1756  
       mediacoreif.dll   DVA Product 7.0.0  
       MPS.dll MPS 2013/03/15-13:25:52 79.535029   79.535029
       msvcm80.dll Microsoft® Visual Studio® 2005 8.00.50727.6195  
       msvcm90.dll Microsoft® Visual Studio® 2008 9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll Microsoft® Visual Studio® 2005 8.00.50727.6195  
       msvcp90.dll Microsoft® Visual Studio® 2008 9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll Microsoft® Visual Studio® 2005 8.00.50727.6195  
       msvcr90.dll Microsoft® Visual Studio® 2008 9.00.30729.1  
       PatchMatch.dll   PatchMatch 0000/00/00-00:00:00   1. 1.
       pdfsettings.dll   Adobe PDFSettings   1.04
       Photoshop.dll   Adobe Photoshop CC   CC  
       Plugin.dll Adobe Photoshop CC   CC  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   4.0.1.34  
       PSArt.dll Adobe Photoshop CC   CC  
       PSViews.dll Adobe Photoshop CC   CC  
       SCCore.dll ScCore 2013/03/21-12:10:31 79.535742   79.535742
       ScriptUIFlex.dll   ScriptUIFlex 2013/03/21-12:10:31   79.535742 79.535742
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Mon Feb 25 2013 16:09:10   Build 0.19078   0.19078
    Required plug-ins:
       3D Studio 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Accented Edges 14.0
       Adaptive Wide Angle 14.0
       Angled Strokes 14.0
       Average 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Bas Relief 14.0
       BMP 14.0
       Camera Raw 8.1
       Camera Raw Filter 8.1
       Chalk & Charcoal 14.0
       Charcoal 14.0
       Chrome 14.0
       Cineon 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Clouds 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Collada 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Color Halftone 14.0
       Colored Pencil 14.0
       CompuServe GIF 14.0
       Conté Crayon 14.0
       Craquelure 14.0
       Crop and Straighten Photos 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Crop and Straighten Photos Filter 14.0
       Crosshatch 14.0
       Crystallize 14.0
       Cutout 14.0
       Dark Strokes 14.0
       De-Interlace 14.0
       Dicom 14.0
       Difference Clouds 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Diffuse Glow 14.0
       Displace 14.0
       Dry Brush 14.0
       Eazel Acquire 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Embed Watermark 4.0
       Entropy 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Extrude 14.0
       FastCore Routines 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Fibers 14.0
       Film Grain 14.0
       Filter Gallery 14.0
       Flash 3D 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Fresco 14.0
       Glass 14.0
       Glowing Edges 14.0
       Google Earth 4 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Grain 14.0
       Graphic Pen 14.0
       Halftone Pattern 14.0
       HDRMergeUI 14.0
       IFF Format 14.0
       Ink Outlines 14.0
       JPEG 2000 14.0
       Kurtosis 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Lens Blur 14.0
       Lens Correction 14.0
       Lens Flare 14.0
       Liquify 14.0
       Matlab Operation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Maximum 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mean 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Measurement Core 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Median 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mezzotint 14.0
       Minimum 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       MMXCore Routines 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mosaic Tiles 14.0
       Multiprocessor Support 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Neon Glow 14.0
       Note Paper 14.0
       NTSC Colors 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Ocean Ripple 14.0
       Oil Paint 14.0
       OpenEXR 14.0
       Paint Daubs 14.0
       Palette Knife 14.0
       Patchwork 14.0
       Paths to Illustrator 14.0
       PCX 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Photocopy 14.0
       Photoshop 3D Engine 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Picture Package Filter 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Pinch 14.0
       Pixar 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Plaster 14.0
       Plastic Wrap 14.0
       PNG 14.0
       Pointillize 14.0
       Polar Coordinates 14.0
       Portable Bit Map 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Poster Edges 14.0
       Radial Blur 14.0
       Radiance 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Range 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Read Watermark 4.0
       Reticulation 14.0
       Ripple 14.0
       Rough Pastels 14.0
       Save for Web 14.0
       ScriptingSupport 14.0
       Shake Reduction 14.0
       Shear 14.0
       Skewness 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Smart Blur 14.0
       Smudge Stick 14.0
       Solarize 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Spatter 14.0
       Spherize 14.0
       Sponge 14.0
       Sprayed Strokes 14.0
       Stained Glass 14.0
       Stamp 14.0
       Standard Deviation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       STL 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Sumi-e 14.0
       Summation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Targa 14.0
       Texturizer 14.0
       Tiles 14.0
       Torn Edges 14.0
       Twirl 14.0
       Underpainting 14.0
       Vanishing Point 14.0
       Variance 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Variations 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Water Paper 14.0
       Watercolor 14.0
       Wave 14.0
       Wavefront|OBJ 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       WIA Support 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Wind 14.0
       Wireless Bitmap 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       ZigZag 14.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Kuler
       Adobe Exchange
    Installed TWAIN devices: NONE
    Can anyone PLEASE help?

    I to have the same issue and it all started after switching photoshop cc's layout to 3d mode now everything crashes repeatedly... Thankgod AE still works but yeah ps 3d system is the culprate here b/c It worked perfectly for 4 months for me until i tried there crappy ps 3d system!

  • Adobe Premiere Pro CC launches for some users, but crashes for others.

    I am troubleshooting an issue in a college computer lab. Adobe Premiere Pro CC launches perfectly for some users, but crashes for others. All computers are joined to a domain. The program launches successfully under faculty and admin accounts. It launches under my student account and will launch for some students in the class. There are, however, some students who cannot get the program to launch. Each time it fails when attempting to load ImporterQuickTime.prm.
    For these students, the following error appears:
    Adobe Premiere Pro CC has stopped working
    Check Online for a solution and close the program (Tried this nothing seems to come of it)
    Close the program
    I clicked View problem details
    Problem Event Name: APPCRASH
    Application Name: Adobe Premiere Pro.exe
    Application Version: 7.2.2.33
    Application Timestamp: 532c3999
    Fault Module Name: dvaui.dll
    Fault Module Version: 7.2.2.33
    Fault Module Timestamp: 532bed86
    Exception Code: c0000005
    Exception Offset: 00000000002d31c1
    OS Version: 6.1.7601.2.1.0.256.48
    Locale ID: 1033
    Additional Information 1: 3272
    Additional Information 2: 32722596c6b4441ac0840ed9743cbfbb
    Additional Information 3: 3e22
      Additional Information 4: 3e2260f0a53760c20f23c7e2675c1736
    I did check Quicktime and it is not updated to the most recent version. However, if it was a result of Quicktime not being up to date, why can some accounts launch the program while others cannot. I have also updated the graphics driver on one computer. No change. I compared my student Active Directory account to that of one student who could not launch the program. They are in exactly the same place in AD and therefore have the same permissions on the domain. This is a puzzling issue and the instructor is getting frustrated. Any help or suggestions with this matter would be greatly appreciated.
    -Barb

    I have no idea, other than what I said about the program's design requirement for an Admin account and "sometimes" problems on any other account
    About the only thing I can suggest is a "remote control" chat session... when a student with a non-working account is having problems
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

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

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

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

  • Firefox crashes for unknown reason lately, so I removed it and reinstalled it. How can I put my Favorites (bookmarks) back into the newly installed FireFox???

    Firefox crashes a few times when I was on Facebook and with email, also watching dramas online. Most of the time due to Adobe Flash and I did submit crash report. Later it crashes for unknown reason while I have email and Facebook on different tabs -- when I was on the tab of email, it looks system hang and not responding. This happened to my laptop that uses Windows Vista as I noticed. I don't remember it ever happens to my desktop that uses Windows XP.
    It's pretty annoying of such known crash, but before removing Firefox, I did try to update all add-ons or plugins and it looks like doesn't work out. After updating for couple times and it still crashed like that, I removed Firefox and reinstall it.
    '''Now I want to know how to put the shortcuts from my Favorite folder into the newly installed FireFox's bookmarks.''' I didn't backup the bookmarks by using Firefox. I even went to Firefox help for instructions, but it only mentions how to merge/input the bookmarks from other browsers. Please note the version I've removed and inrestalled is the same -- 3.6.13.

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the sessionstore.js file and possible sessionstore-##.js files with a number and sessionstore.bak in the Firefox Profile Folder.
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    *http://kb.mozillazine.org/Multiple_profile_files_created
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder

  • Mail Periodically Crashing For No Apparent Reason

    Greetings,
    This really isn't a major problem for me, but it shouldn't be happening, and I'd like to see if someone can help me find out why it is. Here's the deal: Starting about a month ago, Mail will just randomly quit, for no apparent reason. It doesn't happen at any specific time, or when I do something specific, etc. It just suddenly quits. Sometimes my Mac will have been running for a few days, sometimes just a few hours. Sometimes when I have several other apps running, sometimes when there's only one or two other apps running. I really can't discern any real pattern. My Mac is pretty much always on, but I usually restart it every few days, and use Cocktail to run maintenance tasks and repair permissions every other week. The first time this happened was on 10/26/08, actually, it happened twice that day. These are the dates that it has happened, to give you an idea of how often it occurs:
    10/26/08 (2x)
    10/28/08
    11/04/08
    11/10/08 (x2)
    11/12/08
    11/15/08 (x2)
    11/20/08
    11/21/08 (x2)
    11/23/08
    11/25/08
    I can always relaunch it again without incident right away.
    I don't know if this will be of any help, but below is the crash log from the most recent time it quit. I always install every update as soon as I receive them from Apple, but I've inadvertently cleared my installed update history, so I can't check to see if there was a specific update I installed around the time this started happening.
    If anyone has any thoughts, I'd really appreciate hearing them. Again, this isn't critical, and is not inconveniencing me, it just shouldn't be happening, and I'd like to try and figure out why it is.
    This is happening in my dual 2.7 G5 running 10.5.5 w/ Mail 3.5.
    Thanks in advance!
    Take care,
    ~Chris
    Process: Mail [237]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 3.5 (929.4)
    Build Info: Mail-9290400~5
    Code Type: PPC (Native)
    Parent Process: launchd [102]
    Date/Time: 2008-11-25 20:26:02.904 -0800
    OS Version: Mac OS X 10.5.5 (9F33)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 17
    Application Specific Information:
    -[POPAccount fetchSynchronouslyIsAuto:]
    -[POPAccount fetchSynchronouslyIsAuto:]
    -[POPAccount fetchSynchronouslyIsAuto:]
    -[POPAccount fetchSynchronouslyIsAuto:]
    Thread 0:
    0 com.apple.AppKit 0x9613b000 -[NSTableView _rowHeightStorage:] + 24
    1 com.apple.AppKit 0x962308c8 -[NSTableView _rowHeightStorageComputeRowAtPoint:cacheHint:] + 44
    2 com.apple.AppKit 0x961539e4 -[NSTableView rowsInRect:] + 280
    3 com.apple.AppKit 0x960a6a18 -[NSTableView drawRect:] + 772
    4 com.apple.AppKit 0x96127a28 -[NSView _drawRect:clip:] + 3000
    5 com.apple.AppKit 0x96125b34 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1424
    6 com.apple.AppKit 0x9612627c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3288
    7 com.apple.AppKit 0x9612627c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3288
    8 com.apple.AppKit 0x9612627c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3288
    9 com.apple.AppKit 0x9612627c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3288
    10 com.apple.AppKit 0x9612627c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3288
    11 com.apple.AppKit 0x9612627c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3288
    12 com.apple.AppKit 0x9612627c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3288
    13 com.apple.AppKit 0x9612525c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 264
    14 com.apple.AppKit 0x96122028 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2328
    15 com.apple.AppKit 0x96075f40 -[NSWindow displayIfNeeded] + 188
    16 com.apple.mail 0x0001e0d4 0x1000 + 118996
    17 com.apple.AppKit 0x96075da0 _handleWindowNeedsDisplay + 372
    18 com.apple.CoreFoundation 0x90875f74 __CFRunLoopDoObservers + 456
    19 com.apple.CoreFoundation 0x9087711c CFRunLoopRunSpecific + 712
    20 com.apple.HIToolbox 0x9207bd44 RunCurrentEventLoopInMode + 264
    21 com.apple.HIToolbox 0x9207bb68 ReceiveNextEventCommon + 412
    22 com.apple.HIToolbox 0x9207b9a8 BlockUntilNextEventMatchingListInMode + 84
    23 com.apple.AppKit 0x96073e18 _DPSNextEvent + 596
    24 com.apple.AppKit 0x960737d0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 112
    25 com.apple.AppKit 0x9606d48c -[NSApplication run] + 736
    26 com.apple.AppKit 0x9603de90 NSApplicationMain + 440
    27 com.apple.mail 0x000f30e8 0x1000 + 991464
    28 ??? 0x00000ffc 0 + 4092
    Thread 1:
    0 libSystem.B.dylib 0x92386438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9238d35c mach_msg + 56
    2 com.apple.CoreFoundation 0x90877568 CFRunLoopRunSpecific + 1812
    3 com.apple.Foundation 0x942867d0 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 168
    4 com.apple.Foundation 0x942910c4 -[NSRunLoop(NSRunLoop) run] + 72
    5 com.apple.MessageFramework 0x003b282c -[RSSInterchange _runManager] + 1760
    6 com.apple.Foundation 0x94258b78 _NSThread__main_ + 1004
    7 libSystem.B.dylib 0x923c8658 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x9238ce4c _semwaitsignal + 12
    1 libSystem.B.dylib 0x923c9a00 pthread_condwait + 1580
    2 com.apple.QuartzCore 0x93dc82ec fefragmentthread + 48
    3 libSystem.B.dylib 0x923c8658 pthreadstart + 316
    Thread 3:
    0 libSystem.B.dylib 0x92386438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9238d35c mach_msg + 56
    2 com.apple.CoreFoundation 0x90877568 CFRunLoopRunSpecific + 1812
    3 com.apple.CFNetwork 0x91029d88 CFURLCacheWorkerThread(void*) + 292
    4 libSystem.B.dylib 0x923c8658 pthreadstart + 316
    Thread 4:
    0 libSystem.B.dylib 0x92386438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9238d35c mach_msg + 56
    2 com.apple.CoreFoundation 0x90877568 CFRunLoopRunSpecific + 1812
    3 com.apple.Foundation 0x942af9fc +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 280
    4 com.apple.Foundation 0x94258b78 _NSThread__main_ + 1004
    5 libSystem.B.dylib 0x923c8658 pthreadstart + 316
    Thread 5:
    0 libSystem.B.dylib 0x92386438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9238d35c mach_msg + 56
    2 com.apple.CoreFoundation 0x90877568 CFRunLoopRunSpecific + 1812
    3 com.apple.Foundation 0x942867d0 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 168
    4 com.apple.Foundation 0x942910c4 -[NSRunLoop(NSRunLoop) run] + 72
    5 com.apple.MessageFramework 0x002e9964 +[_NSSocket _runIOThread] + 88
    6 com.apple.Foundation 0x94258b78 _NSThread__main_ + 1004
    7 libSystem.B.dylib 0x923c8658 pthreadstart + 316
    Thread 6:
    0 libSystem.B.dylib 0x923eaae4 select$DARWIN_EXTSN + 12
    1 com.apple.CoreFoundation 0x908829b0 __CFSocketManager + 764
    Thread 7:
    0 libSystem.B.dylib 0x9238ce4c _semwaitsignal + 12
    1 libSystem.B.dylib 0x923c9a00 pthread_condwait + 1580
    2 com.apple.AppKit 0x96060378 -[NSViewHierarchyLock lockForReadingWithExceptionHandler:] + 272
    3 com.apple.AppKit 0x96123288 -[NSWindow _copyAcquiredViewHierarchyLock] + 72
    4 com.apple.AppKit 0x960cf770 -[NSUIHeartBeat _heartBeatThread:] + 1244
    5 com.apple.Foundation 0x94258b78 _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x923c8658 pthreadstart + 316
    Thread 8:
    0 libSystem.B.dylib 0x92386438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9238d35c mach_msg + 56
    2 com.apple.CoreFoundation 0x90877568 CFRunLoopRunSpecific + 1812
    3 com.apple.audio.CoreAudio 0x92661e3c HALRunLoop::OwnThread(void*) + 212
    4 com.apple.audio.CoreAudio 0x92661c80 CAPThread::Entry(CAPThread*) + 104
    5 libSystem.B.dylib 0x923c8658 pthreadstart + 316
    Thread 9:
    0 libSystem.B.dylib 0x9238ce4c _semwaitsignal + 12
    1 libSystem.B.dylib 0x923c9a00 pthread_condwait + 1580
    2 com.apple.ColorSync 0x93a370b0 pthreadSemaphoreWait(t_pthreadSemaphore*) + 36
    3 com.apple.ColorSync 0x93a4abec CMMConvTask(void*) + 48
    4 libSystem.B.dylib 0x923c8658 pthreadstart + 316
    Thread 10:
    0 libSystem.B.dylib 0x923c7e98 kevent + 12
    1 com.apple.CoreFoundation 0x9084ef58 _monitor_file_descriptor_ + 240
    Thread 11:
    0 libSystem.B.dylib 0x9238ce4c _semwaitsignal + 12
    1 libSystem.B.dylib 0x923c9a00 pthread_condwait + 1580
    2 libGLProgrammability.dylib 0x90aa2bc8 glvmDoWork + 120
    3 libSystem.B.dylib 0x923c8658 pthreadstart + 316
    Thread 12:
    0 libSystem.B.dylib 0x923c7e98 kevent + 12
    1 com.apple.CoreFoundation 0x9084ef58 _monitor_file_descriptor_ + 240
    Thread 13:
    0 libSystem.B.dylib 0x923c7e98 kevent + 12
    1 com.apple.CoreFoundation 0x9084ef58 _monitor_file_descriptor_ + 240
    Thread 14:
    0 libSystem.B.dylib 0x92386438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9238d35c mach_msg + 56
    2 com.apple.CoreFoundation 0x90877568 CFRunLoopRunSpecific + 1812
    3 com.apple.MessageFramework 0x002eca28 _handleRequestWithTimeout + 1972
    4 com.apple.MessageFramework 0x002f10ac -[_NSSocket readBytes:length:error:] + 160
    5 com.apple.MessageFramework 0x002f0c80 -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 88
    6 com.apple.MessageFramework 0x002f0b08 -[Connection _fillBuffer:] + 860
    7 com.apple.MessageFramework 0x002f06a0 -[Connection _readLineIntoData:error:] + 84
    8 com.apple.MessageFramework 0x003e15f4 -[POP3Connection(PrivateCommands) _copyReplyLineDataWithError:] + 88
    9 com.apple.MessageFramework 0x003e16a8 -[POP3Connection(PrivateCommands) _getStatusFromReply] + 44
    10 com.apple.MessageFramework 0x003e0454 -[POP3Connection quit] + 68
    11 com.apple.MessageFramework 0x003e4140 -[POP3FetchStore fetchSynchronously] + 3036
    12 com.apple.MessageFramework 0x00412794 -[POPAccount fetchSynchronously] + 316
    13 com.apple.CoreFoundation 0x908eaa98 _invoking__ + 168
    14 com.apple.CoreFoundation 0x908ea32c -[NSInvocation invoke] + 128
    15 com.apple.MessageFramework 0x003b4a34 -[MonitoredInvocation invoke] + 392
    16 com.apple.MessageFramework 0x003b4664 -[InvocationQueue _drainQueue] + 656
    17 com.apple.Foundation 0x94258b78 _NSThread__main_ + 1004
    18 libSystem.B.dylib 0x923c8658 pthreadstart + 316
    Thread 15:
    0 libSystem.B.dylib 0x92386498 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9238d6f4 pthreadmutexlock + 648
    2 com.apple.CoreData 0x915179e8 -[_PFLock lock] + 24
    3 com.apple.CoreData 0x9151fccc -[NSManagedObjectContext(_NSInternalAdditions) lockObjectStore] + 44
    4 com.apple.CoreData 0x9151dc70 -[NSManagedObjectContext executeFetchRequest:error:] + 344
    5 com.apple.MessageFramework 0x00468838 -[SeenMessagesManager messagesToBeDeletedFromServer] + 272
    6 com.apple.MessageFramework 0x003e4398 -[POP3FetchStore _deleteMessagesMarkedForDeletionUsingManager:] + 36
    7 com.apple.MessageFramework 0x003e363c -[POP3FetchStore fetchSynchronously] + 216
    8 com.apple.MessageFramework 0x00412794 -[POPAccount fetchSynchronously] + 316
    9 com.apple.CoreFoundation 0x908eaa98 _invoking__ + 168
    10 com.apple.CoreFoundation 0x908ea32c -[NSInvocation invoke] + 128
    11 com.apple.MessageFramework 0x003b4a34 -[MonitoredInvocation invoke] + 392
    12 com.apple.MessageFramework 0x003b4664 -[InvocationQueue _drainQueue] + 656
    13 com.apple.Foundation 0x94258b78 _NSThread__main_ + 1004
    14 libSystem.B.dylib 0x923c8658 pthreadstart + 316
    Thread 16:
    0 libSystem.B.dylib 0x92386438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9238d35c mach_msg + 56
    2 com.apple.CoreFoundation 0x90877568 CFRunLoopRunSpecific + 1812
    3 com.apple.MessageFramework 0x002eca28 _handleRequestWithTimeout + 1972
    4 com.apple.MessageFramework 0x002e93e0 -[_NSSocket connectToHost:withPort:protocol:] + 700
    5 com.apple.MessageFramework 0x002e8704 -[Connection _connectUsingHostname:onPort:securityLayerType:accountClass:] + 664
    6 com.apple.MessageFramework 0x002e7f50 -[Connection connectAndSetSecurityLayerUsingAccount:] + 204
    7 com.apple.MessageFramework 0x003bc770 -[Connection connectUsingAccount:] + 84
    8 com.apple.MessageFramework 0x00383ff8 -[Account _connectAndAuthenticate:] + 168
    9 com.apple.MessageFramework 0x003fe3b4 -[Account authenticatedConnection] + 88
    10 com.apple.MessageFramework 0x003e3788 -[POP3FetchStore fetchSynchronously] + 548
    11 com.apple.MessageFramework 0x00412794 -[POPAccount fetchSynchronously] + 316
    12 com.apple.CoreFoundation 0x908eaa98 _invoking__ + 168
    13 com.apple.CoreFoundation 0x908ea32c -[NSInvocation invoke] + 128
    14 com.apple.MessageFramework 0x003b4a34 -[MonitoredInvocation invoke] + 392
    15 com.apple.MessageFramework 0x003b4664 -[InvocationQueue _drainQueue] + 656
    16 com.apple.Foundation 0x94258b78 _NSThread__main_ + 1004
    17 libSystem.B.dylib 0x923c8658 pthreadstart + 316
    Thread 17 Crashed:
    0 libobjc.A.dylib 0xfffeff20 objcmsgSendrtp + 32
    1 com.apple.CoreData 0x91522f44 -[NSComparisonPredicate(_NSCoreDataSQLPredicateCategories) _isForeignObjectExpression:givenContext:] + 116
    2 com.apple.CoreData 0x91522a54 -[NSComparisonPredicate(_NSCoreDataSQLPredicateCategories) minimalFormInContext:] + 720
    3 com.apple.CoreData 0x9152267c -[NSCompoundPredicateOperator(_NSCoreDataSQLPredicateCategories) minimalFormInContext:ofPredicates:] + 924
    4 com.apple.CoreData 0x91521c1c -[NSSQLGenerator initializeContextForFetchRequest:ignoreInheritance:] + 416
    5 com.apple.CoreData 0x915216cc -[NSSQLGenerator generateSQLStatementForFetchRequest:ignoreInheritance:countOnly:] + 80
    6 com.apple.CoreData 0x91521504 -[NSSQLAdapter _newSelectStatementWithFetchRequest:ignoreInheritance:] + 892
    7 com.apple.CoreData 0x91520f90 -[NSSQLCore newRowsForFetchPlan:] + 120
    8 com.apple.CoreData 0x91520c70 -[NSSQLCore objectsForFetchRequest:inContext:] + 364
    9 com.apple.CoreData 0x91520a5c -[NSSQLCore executeRequest:withContext:] + 244
    10 com.apple.CoreData 0x9151ffd0 -[NSPersistentStoreCoordinator(_NSInternalMethods) executeRequest:withContext:] + 720
    11 com.apple.CoreData 0x9151dd4c -[NSManagedObjectContext executeFetchRequest:error:] + 564
    12 com.apple.MessageFramework 0x00468838 -[SeenMessagesManager messagesToBeDeletedFromServer] + 272
    13 com.apple.MessageFramework 0x003e4398 -[POP3FetchStore _deleteMessagesMarkedForDeletionUsingManager:] + 36
    14 com.apple.MessageFramework 0x003e363c -[POP3FetchStore fetchSynchronously] + 216
    15 com.apple.MessageFramework 0x00412794 -[POPAccount fetchSynchronously] + 316
    16 com.apple.CoreFoundation 0x908eaa98 _invoking__ + 168
    17 com.apple.CoreFoundation 0x908ea32c -[NSInvocation invoke] + 128
    18 com.apple.MessageFramework 0x003b4a34 -[MonitoredInvocation invoke] + 392
    19 com.apple.MessageFramework 0x003b4664 -[InvocationQueue _drainQueue] + 656
    20 com.apple.Foundation 0x94258b78 _NSThread__main_ + 1004
    21 libSystem.B.dylib 0x923c8658 pthreadstart + 316
    Thread 17 crashed with PPC Thread State 32:
    srr0: 0xfffeff20 srr1: 0x0000f030 dar: 0x00000000 dsisr: 0x40000000
    r0: 0x16728798 r1: 0xf0b28330 r2: 0x00000000 r3: 0x186723e0
    r4: 0x94555d98 r5: 0xa0244a44 r6: 0x1b9dc480 r7: 0x00000010
    r8: 0x00000c92 r9: 0x171873d4 r10: 0x9080f978 r11: 0x6bab5d98
    r12: 0x1b04a590 r13: 0x00523564 r14: 0x00523564 r15: 0x00523564
    r16: 0xa02422e0 r17: 0xa02422e0 r18: 0x1714f5b0 r19: 0x00000000
    r20: 0x00000000 r21: 0xa0242784 r22: 0x195c61c0 r23: 0x1a188bb0
    r24: 0xa0242784 r25: 0x1b9dc480 r26: 0x1b9dc480 r27: 0xa0242ed0
    r28: 0xa0242ed0 r29: 0x186723e0 r30: 0x1a1a2760 r31: 0x91522ed0
    cr: 0x44002284 xer: 0x20000000 lr: 0x91522fb0 ctr: 0x91519360
    vrsave: 0x00000000
    Binary Images:
    0x1000 - 0x268fff com.apple.mail 3.5 (929.4) <fa74bcac34b92cee4e79c01069c05f36> /Applications/Mail.app/Contents/MacOS/Mail
    0x2d0000 - 0x505fff com.apple.MessageFramework 3.5 (929.2) <11988d61185130a8209f998bbf52e550> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x646000 - 0x708fff com.apple.WebKit 5525.27 (5525.27.1) <7de8ed23795391f9d81127e9b639a3c3> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7a5000 - 0x88efff libxml2.2.dylib ??? (???) <dedfda117e78db04f0b86c59923b3794> /usr/lib/libxml2.2.dylib
    0x8b9000 - 0x9a1fff com.apple.JavaScriptCore 5525.26 (5525.26.2) <3a03d36ac807322bc73ed78c515e32be> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9fb000 - 0x10ddff3 com.apple.WebCore 5525.26 (5525.26.6) <77f5e6579cb4a8496df8d644ca7fa12d> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x14bb000 - 0x14bdfff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x14c3000 - 0x14e9fff com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <3abfafbb3982f8c148b49a9c3b35b1f9> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x1508000 - 0x1510fff +com.Logitech.Control Center.Scroll Enhancer Loader 2.6.0 (2.6.0) /Library/InputManagers/LCC Scroll Enhancer Loader/LCC Scroll Enhancer Loader.bundle/Contents/MacOS/LCC Scroll Enhancer Loader
    0x1516000 - 0x151fffb +com.Logitech.Control Center.Scroll Enhancer 2.6.0 (2.6.0) /Library/Application Support/Logitech/LCC Scroll Enhancer.bundle/Contents/MacOS/LCC Scroll Enhancer
    0x1720000 - 0x1721ffc liblangid.dylib ??? (???) <5f078ac1f623f5ce432ea53fc29338c0> /usr/lib/liblangid.dylib
    0x17b9000 - 0x17bffff libCGXCoreImage.A.dylib ??? (???) <3e8a67b9143aae8511f31076c638caa9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x13b65000 - 0x13b77ffd libTraditionalChineseConverter.dylib ??? (???) <c6896409186d7ccc1634a8ef79a55e29> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x13b7b000 - 0x13b8affe libSimplifiedChineseConverter.dylib ??? (???) <ebd07f62ca7e5c43550b75d61c8910d6> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x13e2c000 - 0x13e2fff3 com.apple.QuickTimeH264.component 7.5.5 (995.22.3) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x13e3f000 - 0x13e5bfff GLRendererFloat ??? (???) <24a8b15d4d87b6caa1cabdb73453c416> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x14149000 - 0x1416aff1 libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x14172000 - 0x1418effb +com.eSellerate.EWSMac50726197 ??? (3.6.5.53) /Library/Frameworks/EWSMac.framework/EWSMac50726197
    0x16765000 - 0x16766ffb ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x16788000 - 0x16788ffc com.apple.JavaPluginCocoa 12.2.0 (12.2.0) <4d7c87368522f447883c0dc395d6a2b4> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x16c00000 - 0x16dc6ff3 com.apple.RawCamera.bundle 2.0.11 (410) <cb1064f6df992213476170f57e48ef1c> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x16e50000 - 0x16e57fcf com.apple.AppleMPEG2Codec 1.0.1 (220) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x17040000 - 0x17047fff com.apple.JavaVM 12.2.0 (12.2.0) <66f0b4a638cd0a2c2ab76c8b13382b51> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x17050000 - 0x1705efff com.apple.mail.WebPlugIn 3.5 (929.4) <360eca5b7398bd80b70e53e6e455a0b3> /Applications/Mail.app/Contents/PlugIns/MailWebPlugIn.bundle/Contents/MacOS/Mai lWebPlugIn
    0x17067000 - 0x17087ff7 com.apple.AppleVAFramework 4.0.20 (4.0.20) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x170b7000 - 0x170b8ffd com.apple.aoa.halplugin 2.5.7 (2.5.7f1) <7f1a60978b668db2fc7b7ee642120335> /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x17271000 - 0x1728eff7 com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x18436000 - 0x18438ffd com.apple.textencoding.unicode 2.2 (2.2) <483d06bdf16bdbbad53efcea4fcfb688> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1846f000 - 0x18473fff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <9ea9c438a65be22a5e946e62ebfc9360> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1948c000 - 0x194ccf8f com.apple.AppleProResDecoder 1.0 (51) /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x194da000 - 0x194ecfff com.apple.syncservices.syncservicesui 4.1 (389.7) <c15478c21121824c78a7c2a17377788a> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x19aea000 - 0x19b28ff7 com.apple.QuickTimeFireWireDV.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x19b7c000 - 0x19bd9fff com.apple.applepixletvideo 1.2.16 (1.2d16) <e7d7062d023b0d41d47f92c9bfe14c79> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x19de8000 - 0x19f5fffb GLEngine ??? (???) <6ee4c83c4d1bb994849f941c70609cfe> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1a022000 - 0x1a03fffb com.apple.Mail.Syncer 3.5 (929.2) <a5ebe2c839466d0abf42b135b05b88e4> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    0x1a50e000 - 0x1a5beffb com.apple.AppleHDVCodec 1.0 (129) /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x1d2f7000 - 0x1d532fcf +net.telestream.wmv.import 2.2.1.11 (2.2.1.11) /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1dd9a000 - 0x1df4fffb +net.telestream.wmv.advanced 2.2.1.11 (2.2.1.11) /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x1e4fc000 - 0x1e76cff1 com.apple.ATIRadeon9700GLDriver 1.5.30 (5.3.0) <3215c048c4ce3d89715c3666458a182a> /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS/ATIRadeo n9700GLDriver
    0x200cc000 - 0x2031ffff +org.perian.Perian 1.1.2 (1.1.2) <21a17636c021ae8fc0cbf5a8025bc0f9> /Library/QuickTime/Perian.component/Contents/MacOS/Perian
    0x70000000 - 0x700cbff3 com.apple.audio.units.Components 1.5.1 (1.5.1) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe30b23 dyld 96.2 (???) <39109181acbf30fed542e6c9abcf1798> /usr/lib/dyld
    0x90003000 - 0x90059fff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9005a000 - 0x9035bffb com.apple.CoreServices.CarbonCore 786.6 (786.6) <94736308a0b44830c732ebb1bebd78f8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9035c000 - 0x9039efff com.apple.CoreMediaIOServicesPrivate 12.0 (12.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9039f000 - 0x903a3ffe libGIF.dylib ??? (???) <491b205a6b8bb0c0c6ee6aaeea19a671> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x903a4000 - 0x903f3fff com.apple.datadetectorscore 1.0.2 (52.14) <dce349f0368081cfa3a2cc7ad2ae990a> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x90671000 - 0x90690fff libresolv.9.dylib ??? (???) <d4538f370cadea5d74d3ac86c610e570> /usr/lib/libresolv.9.dylib
    0x90691000 - 0x9069afff com.apple.DiskArbitration 2.2.1 (2.2.1) <a389b4c2badce39540f24402f7df35e7> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9069b000 - 0x90807ff9 com.apple.AddressBook.framework 4.1.1 (696) <d060674db5664f6db586985a12742f1c> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90808000 - 0x9080dfff com.apple.KerberosHelper 1.1 (1.0) <8f67c86123d3225e76cf7d361eaaeafd> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x9080e000 - 0x90933ffb com.apple.CoreFoundation 6.5.4 (476.15) <cad7eb450d1f930417aeeca9eb00dbcd> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90934000 - 0x90a7cffb libicucore.A.dylib ??? (???) <2d1f8cb81754c6b68809a4aa6c7b94a3> /usr/lib/libicucore.A.dylib
    0x90a7d000 - 0x90eabffa libGLProgrammability.dylib ??? (???) <603a9704539c585a35801c2452930cb2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90f4e000 - 0x90f87fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <1a39075165bf7447fe8be1e93db49346> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90f88000 - 0x90fbafff com.apple.bom 9.0 (136) <cb560109ea507cdfb6c77349845e6b2a> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x90fbb000 - 0x91005fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x91006000 - 0x91007fff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x91008000 - 0x91016ffb com.apple.opengl 1.5.7 (1.5.7) <0f5ac86573f9bb828dfa1864d85a4162> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91017000 - 0x91017ff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91018000 - 0x9101effb com.apple.DisplayServicesFW 2.0 (2.0) <fb3b6779bc6c167bc163798b6d20a866> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9101f000 - 0x910a5ff9 com.apple.CFNetwork 339.5 (339.5) <b401902ddbf0d923e7b584e579ce0b4c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x910a6000 - 0x91179fff com.apple.CoreServices.OSServices 226.5 (226.5) <e50f547a3d8d316885b424e282bd80fe> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9117a000 - 0x9117affc com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9117b000 - 0x911b8ffe com.apple.securityfoundation 3.0 (32989) <ad2dd4c797fa2ba4c656f82936f9fb83> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x911b9000 - 0x9124dfff com.apple.framework.IOKit 1.5.1 (???) <9bd6b9e0f0a9a25c3a1d379da04dd8be> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9124e000 - 0x91278ff7 libssl.0.9.7.dylib ??? (???) <1c571a24294df1af3428e31d464029fc> /usr/lib/libssl.0.9.7.dylib
    0x91279000 - 0x9139effb com.apple.imageKit 1.0.2 (1.0) <86dec1a5970c6e713cc9b3f532098b19> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9139f000 - 0x913aefff com.apple.DMNotification 1.1.0 (143) <c68dc3aa8e69dfea987ae8400ccaa929> /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x913af000 - 0x913f5ff9 com.apple.securityinterface 3.0 (32532) <82a438eff282dd1dc1f803dfd91b5f38> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x913f6000 - 0x91504fff com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x91505000 - 0x915caffb com.apple.CoreData 100.1 (186) <9cf54cb19b18e53ee22edb7ababa6e6c> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x915cb000 - 0x9162dffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9162e000 - 0x91742ffa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91743000 - 0x9188fffb com.apple.CalendarStore 3.0.5 (841) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x91890000 - 0x918ecffb com.apple.HIServices 1.7.0 (???) <48d200891cc9dd795ee547d526c6a45b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ed000 - 0x91902fff com.apple.IMUtils 4.0.5 (582) <d932fd56d7cb597ce9a0d72015db1a90> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x91903000 - 0x9196dfff com.apple.PDFKit 2.1.1 (2.1.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9196e000 - 0x91b0eff7 com.apple.QuartzComposer 2.1 (106.5) <5dc62dabb295b4b355da9d37501b3f90> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x91bd5000 - 0x91c6efc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91c6f000 - 0x91c6fffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x91c70000 - 0x91cd8fff com.apple.iLifeMediaBrowser 1.0.9 (212.0.1) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x91d0b000 - 0x91d1bfff libsasl2.2.dylib ??? (???) <18935d5e775962f4728b91189b092d45> /usr/lib/libsasl2.2.dylib
    0x91d1c000 - 0x9204aff7 com.apple.QuickTime 7.5.5 (990.7) <f530ad007afd28b3dc938a41e0a3f1e8> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9204b000 - 0x92384feb com.apple.HIToolbox 1.5.4 (???) <ffe389390ecc05cf8770c81db6511bd1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92385000 - 0x9251efe3 libSystem.B.dylib ??? (???) <787ea59c19201d04a507b13d2bb3f9ac> /usr/lib/libSystem.B.dylib
    0x9251f000 - 0x92524fff com.apple.OpenDirectory 10.5 (10.5) <6dca8a620bb66310737d421624ebbfcd> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x92525000 - 0x92556fff com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92557000 - 0x925bcffb com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x925bd000 - 0x925c5ffb libCGATS.A.dylib ??? (???) <3c50a1f1f03470a8baadd22a17a4b547> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x925c6000 - 0x925cdfff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x925ce000 - 0x925e9ff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <60afb4ad8bd64c8539f50f7edef1f759> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x925ea000 - 0x925f7fff libCSync.A.dylib ??? (???) <e0395a40546c6c8b244962512e74c35e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x925f8000 - 0x9263ffff com.apple.NavigationServices 3.5.2 (163) <cb063c95a55ba12994a64c7e47f5706a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92640000 - 0x926c7ffb com.apple.audio.CoreAudio 3.1.0 (3.1) <880a5a35ef1c5158271ee4b305b35626> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x926c8000 - 0x926e6fff com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x926e7000 - 0x92736fff com.apple.Metadata 10.5.2 (398.22) <7063f883d9d901fea72151597ccd4e6a> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92737000 - 0x927b8fff com.apple.print.framework.PrintCore 5.5.3 (245.3) <032f772f8169945c1d1b524d96edcef6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x927b9000 - 0x92819fff com.apple.CoreText 2.0.3 (???) <4ce8460abbfca7c9bd655ae0173976df> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92820000 - 0x92b49fe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92b4a000 - 0x92b5ffff com.apple.datadetectors 1.0.1 (66.2) <90711dd7887550dd04f564ec211cf059> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x92b60000 - 0x92b7bffb libPng.dylib ??? (???) <248297ff5b022c274d5dcfa0de3b37b2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92b7c000 - 0x92b7cffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92b7d000 - 0x92b8dffb com.apple.agl 3.0.9 (AGL-3.0.9) <8b58fee8bcc6c3746df3fda7049b5e45> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x92b8e000 - 0x92b99ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x92b9a000 - 0x92bcffff com.apple.AE 402.2 (402.2) <0b15a08da8ec38b74fb9dd6e579ed25f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92bd0000 - 0x92c6aff7 com.apple.ApplicationServices.ATS 3.4 (???) <77bbf58ddc32846bdfdea2bd30ab6fb9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92c6b000 - 0x92cd2ffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x92cd3000 - 0x93946fff com.apple.QuickTimeComponents.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x93947000 - 0x93952fff com.apple.dotMacLegacy 3.1 (244.1) <570bed901cb34b2a4de7b7365e366e2d> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x93953000 - 0x93a01ffb com.apple.QTKit 7.5.5 (990.7) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93a02000 - 0x93ad1fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93ad2000 - 0x93cb8ffb com.apple.security 5.0.4 (34102) <9a5739b5b522f963b320fd71581b9cf5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93cb9000 - 0x93cd5ffb com.apple.openscripting 1.2.8 (???) <eb961ce3c1b1e564c2eefe3682ee0555> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93cd6000 - 0x9403bff2 com.apple.QuartzCore 1.5.5 (1.5.5) <e5fa65979d5e0bb75ec19aea053ce83d> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9403c000 - 0x94048ff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94049000 - 0x94056fff libbz2.1.0.dylib ??? (???) <ff3050272228dbda09852641458eaaa4> /usr/lib/libbz2.1.0.dylib
    0x94057000 - 0x94096fff com.apple.DAVKit 3.0.4 (652) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x94097000 - 0x9409affb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9409b000 - 0x940aafff com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <651e2b4d7e19d43f520829f76216f2c2> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x940ab000 - 0x94165fff libcrypto.0.9.7.dylib ??? (???) <335916b82e302fec637432caf7c9e8e5> /usr/lib/libcrypto.0.9.7.dylib
    0x9424f000 - 0x94494ffb com.apple.Foundation 6.5.6 (677.21) <8350383f1c44d18e471451ce92a1572c> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94495000 - 0x94578fff libobjc.A.dylib ??? (???) <39035ba996e55c617e20595dcd89c063> /usr/lib/libobjc.A.dylib
    0x94579000 - 0x945aeffb com.apple.LDAPFramework 1.4.5 (110) <d0de37a2c23c1ab7dfd4af1882db9893> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x945af000 - 0x945dcfff libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x945dd000 - 0x945f0ffe com.apple.CFOpenDirectory 10.5 (10.5) <41ed29dcd683657b10994df7d7349e0a> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x945f1000 - 0x946e7ffc libiconv.2.dylib ??? (???) <05ae1fcc97404173b2f9caef8f8be797> /usr/lib/libiconv.2.dylib
    0x946e8000 - 0x94707fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94708000 - 0x94734fff com.apple.CoreMediaPrivate 11.0 (11.0) <5c3e0852cafaace76f92a112921a8ff0> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x94735000 - 0x94737ffd libRadiance.dylib ??? (???) <34cc3c24f4be3a4372275400b6e05b85> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94738000 - 0x947e8fff edu.mit.Kerberos 6.0.12 (6.0.12) <c72d937eebc3e56ea636d332e2bb18cf> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x947e9000 - 0x94da3fff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94da4000 - 0x94da9ff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x94daa000 - 0x94daafff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94dab000 - 0x94e41fff com.apple.LaunchServices 290 (290) <fd3ffed6d3e33d356610d5eac6c7088a> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94e42000 - 0x94e6bffb com.apple.shortcut 1 (1.0) <032016a45147a2f3f191ce70187587c9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94e6c000 - 0x94f8aff7 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94f8b000 - 0x94fccffb libTIFF.dylib ??? (???) <4c1422124af245485d6ceee207f4d735> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94fcd000 - 0x94ff8ff7 libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib
    0x95004000 - 0x95032ffb com.apple.DotMacSyncManager 1.2.3 (286) <65d0e4540083a64199504933831a99d2> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x95716000 - 0x957a0fff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x957a1000 - 0x957baffb com.apple.CoreVideo 1.5.1 (1.5.1) <7568a5b07a0ccb4ee76a9b997fa3e5d9> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x957bb000 - 0x957c6fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x957c7000 - 0x95877fff com.apple.QD 3.11.54 (???) <cd7bef6f156b82851cfb164ccd9f3986> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95878000 - 0x9588bfff com.apple.LangAnalysis 1.6.4 (1.6.4) <f12db38b92cbf96b024206698434d14d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9595b000 - 0x959e3fff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x959e4000 - 0x959ecfff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x959ed000 - 0x95f64ff3 com.apple.CoreGraphics 1.351.33 (???) <83d4f302053d3fe5f69c8e20b3a0c34f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95f65000 - 0x95f68fff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95f69000 - 0x95ff8ffb com.apple.DesktopServices 1.4.7 (1.4.7) <5792e9dc03f76544c71dedd802a1fa36> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95ff9000 - 0x96037ff7 libtidy.A.dylib ??? (???) <aec2c15110f29e8461160b4fa0a1fbbe> /usr/lib/libtidy.A.dylib
    0x96038000 - 0x967adfff com.apple.AppKit 6.5.3 (949.34) <5a94250c410980eb9047e9a5f0f9b558> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x967ae000 - 0x967c6ffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x967c7000 - 0x967effff libxslt.1.dylib ??? (???) <a69bf3978edd9dd905726660011bb6e6> /usr/lib/libxslt.1.dylib
    0x967f0000 - 0x967f0ffe com.apple.quartzframework 1.5 (1.5) <1477ba992c53f43087c7527c4782fd54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x967f5000 - 0x96808ffb com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <dc8dac074f4d19175c5613b35aa529b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96809000 - 0x9688efff libsqlite3.0.dylib ??? (???) <f2a33fe2663eab9c7f4806d2cf05b4ee> /usr/lib/libsqlite3.0.dylib
    0x9688f000 - 0x968defff libGLImage.dylib ??? (???) <274f96cdf247e29c74dc476d166928ca> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x968df000 - 0x968fefff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x968ff000 - 0x96941fff com.apple.quartzfilters 1.5.0 (1.5.0) <3f2dc01a646cd5b5ea55d510583ba4d5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x96942000 - 0x96959ffb com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9695a000 - 0x9695bff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9695c000 - 0x96aa6ffb com.apple.ImageIO.framework 2.0.4 (2.0.4) <cbe744146e1f0e77cca0edce92bea0f7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96aa7000 - 0x96acdfff libcups.2.dylib ??? (???) <0baa8f1a940b5d8c4d8e4e63fffef410> /usr/lib/libcups.2.dylib
    0x96ace000 - 0x96b33ffb com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x96b34000 - 0x96b34fff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x96b35000 - 0x96b72fff libRIP.A.dylib ??? (???) <2a8fc4eb2a2120c341c15b54f807041d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96b73000 - 0x96b7effb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x96b7f000 - 0x96b86ffb com.apple.print.framework.Print 218.0.2 (220.1) <c7e0e618d5867ae227403ae385aacd82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96b87000 - 0x96c02fff com.apple.SearchKit 1.2.1 (1.2.1) <23c2c93a7ec832505d5c7b67fee89a6d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x96c03000 - 0x96c23ff7 libJPEG.dylib ??? (???) <f92878fdf02ffb1474b8bc60c47bb72d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96c24000 - 0x96cf2ffb com.apple.syncservices 3.1 (389.7) <3d6f945da3813785216fd2df7a408e16> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x96cf3000 - 0x96d0ffff com.apple.IMFramework 4.0.5 (582) <7a425a078e842dea6469edccdf596022> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x96d10000 - 0x96d16ffb com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96d17000 - 0x96d25fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x96d26000 - 0x96d73fff com.apple.framework.familycontrols 1.0.2 (1.0.2) <de0f0cb147a364a1017bbb27e58f5e09> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x96e5e000 - 0x96ea2ffb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <20fa0a9cc952b90f7686a47409733eb8> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x96ea3000 - 0x96ea3fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0xba900000 - 0xba917ffe libJapaneseConverter.dylib ??? (???) <dc8f48ea3439e971b6ec6b51c5b7160a> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21ffc libKoreanConverter.dylib ??? (???) <3516a913c9651dc5d3cbef3e1704b50f> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Maybe Mail's message index is corrupt. The following procedure is safe to try. Its only deleterious effect is that windows you left open in Mail at step 1 won't reopen automatically in step 4.
    1. Quit Mail.
    2. Browse to ~/Library/Mail.
    3. Move "Envelope Index" to your desktop.
    4. Launch Mail.
    Mail will rebuild its index before it opens any windows. It may take a few minutes to rebuild. Be patient!
    The new index is likely to be a different size than the old one, usually smaller.
    Only the Message Viewer window will open--not any other windows you may have left open when Mail quit.
    Be sure your mail folders are there and have their messages. They always are there, but the prudent check anyway.
    Be sure you can send and receive mail. This always works, too.
    After you have done the above, trash the old Envelope Index that you saved on your desktop. It is never better than the new one, and as time goes on, it becomes more and more out of synch with your mail folders, so you won't want to put it back in Library.
    If Mail doesn't crash for a week or two, you probably fixed the problem. If not, you at least freed up some disk space.
    Let us all know whether and how you solved your problem.

  • MTA Crashes for no apparent reason

    Running GW 7.0.2HP on SLES10SP2 OES2. GroupWise has been running fine since I put on the HP, so I haven't obviously bothered with it for quite awhile (if it's not broke, don't fix it), but now the MTA crashes for no apparent reason throughout the day. I reload it, and it runs fine for a couple of hours then crashes again. I changed the logs to verbose, but so far nothing seems to make sense. Below are a couple of entries from the previous logs. Any help will be appreciated.
    Thanks,
    Hogan
    .....Entries in the log before the crash
    09:03:42 472 RTR: FAE1_Domain: 000c38f3.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38f3.3W4 (4 kb)
    09:03:42 616 RTR: FAE1_Domain: 000c38f4.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38f4.3W4 (4 kb)
    09:03:42 856 RTR: FAE1_Domain: 000c38f6.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38f6.3W4 (4 kb)
    09:03:42 616 RTR: FAE1_Domain: 000c38f7.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38f7.3W4 (4 kb)
    09:03:42 856 RTR: FAE1_Domain: 000c38f8.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38f8.3W4 (4 kb)
    09:03:42 848 RTR: FAE1_Domain: 000c38f9.XK4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38f9.XK4 (4 kb)
    09:03:42 680 RTR: FAE1_Domain: 000c38fa.EB4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38fa.EB4 (10 kb)
    09:03:42 240 RTR: FAE1_Domain: 000c38
    .....Entries in the log during the next restart
    09:07:36 208 Starting GWHTTP-Listener
    09:07:36 992 DIS: MTA configuration loaded
    09:07:36 992 Zeli1_PO: Post office now open
    09:07:37 592 LOG: Opening new log file: 0111mta.002
    09:07:37 400 RTR: FAE1_Domain: 000c3934.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c3934.3W4 (4 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3936.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c3936.3W4 (4 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3938.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c3938.3W4 (4 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3939.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c3939.3W4 (4 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c393b.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c393b.3W4 (4 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c393f.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c393f.3W4 (4 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3942.3W5: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/5/000c3942.3W5 (1 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3943.3W5: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/5/000c3943.3W5 (1 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3944.3W5: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/5/000c3944.3W5 (1 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3945.3W5: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/5/000c3945.3W5 (1 kb)
    09:07:38 080 FAE1_Domain: Domain now open
    09:07:38 312 FGRPGWIA: Gateway now open
    09:07:38 544 WEBAC70A: Gateway now open
    09:07:38 392 Zeli1_GWRemote1: Gateway now open
    09:07:42 400 RTR: FAE1_Domain: 000c3949.SH4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c3949.SH4 (3 kb)
    09:07:42 400 RTR: FAE1_Domain: 000c394a.FI4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c394a.FI4 (9 kb)
    09:07:42 400 RTR: FAE1_Domain: 000c394b.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c394b.3W4 (4 kb)
    09:07:42 400 RTR: FAE1_Domain: 000c394c.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c394c.3W4 (4 kb)
    09:07:42 400 RTR: FAE1_Domain: 000c394d.MR4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c394d.MR4 (15 kb)
    09:07:42 400 RTR: FAE1_Domain: 000c394e.ZB4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c394e.ZB4 (3 kb)

    Hi Michael,
    i think there is a newer patchlevel available (7.03 Hp4).
    Maybe you can update your agents.
    Do you get error messages (var/log/messages), etc.?
    Kind regards
    Frank Diekmann
    Originally Posted by Michael Hogan
    Running GW 7.0.2HP on SLES10SP2 OES2. GroupWise has been running fine since I put on the HP, so I haven't obviously bothered with it for quite awhile (if it's not broke, don't fix it), but now the MTA crashes for no apparent reason throughout the day. I reload it, and it runs fine for a couple of hours then crashes again. I changed the logs to verbose, but so far nothing seems to make sense. Below are a couple of entries from the previous logs. Any help will be appreciated.
    Thanks,
    Hogan
    .....Entries in the log before the crash
    09:03:42 472 RTR: FAE1_Domain: 000c38f3.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38f3.3W4 (4 kb)
    09:03:42 616 RTR: FAE1_Domain: 000c38f4.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38f4.3W4 (4 kb)
    09:03:42 856 RTR: FAE1_Domain: 000c38f6.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38f6.3W4 (4 kb)
    09:03:42 616 RTR: FAE1_Domain: 000c38f7.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38f7.3W4 (4 kb)
    09:03:42 856 RTR: FAE1_Domain: 000c38f8.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38f8.3W4 (4 kb)
    09:03:42 848 RTR: FAE1_Domain: 000c38f9.XK4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38f9.XK4 (4 kb)
    09:03:42 680 RTR: FAE1_Domain: 000c38fa.EB4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c38fa.EB4 (10 kb)
    09:03:42 240 RTR: FAE1_Domain: 000c38
    .....Entries in the log during the next restart
    09:07:36 208 Starting GWHTTP-Listener
    09:07:36 992 DIS: MTA configuration loaded
    09:07:36 992 Zeli1_PO: Post office now open
    09:07:37 592 LOG: Opening new log file: 0111mta.002
    09:07:37 400 RTR: FAE1_Domain: 000c3934.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c3934.3W4 (4 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3936.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c3936.3W4 (4 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3938.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c3938.3W4 (4 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3939.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c3939.3W4 (4 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c393b.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c393b.3W4 (4 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c393f.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c393f.3W4 (4 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3942.3W5: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/5/000c3942.3W5 (1 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3943.3W5: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/5/000c3943.3W5 (1 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3944.3W5: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/5/000c3944.3W5 (1 kb)
    09:07:37 400 RTR: FAE1_Domain: 000c3945.3W5: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/5/000c3945.3W5 (1 kb)
    09:07:38 080 FAE1_Domain: Domain now open
    09:07:38 312 FGRPGWIA: Gateway now open
    09:07:38 544 WEBAC70A: Gateway now open
    09:07:38 392 Zeli1_GWRemote1: Gateway now open
    09:07:42 400 RTR: FAE1_Domain: 000c3949.SH4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c3949.SH4 (3 kb)
    09:07:42 400 RTR: FAE1_Domain: 000c394a.FI4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c394a.FI4 (9 kb)
    09:07:42 400 RTR: FAE1_Domain: 000c394b.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c394b.3W4 (4 kb)
    09:07:42 400 RTR: FAE1_Domain: 000c394c.3W4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c394c.3W4 (4 kb)
    09:07:42 400 RTR: FAE1_Domain: 000c394d.MR4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c394d.MR4 (15 kb)
    09:07:42 400 RTR: FAE1_Domain: 000c394e.ZB4: Routing /var/opt/novell/groupwise/mail/domain/mslocal/gwinprog/4/000c394e.ZB4 (3 kb)

  • Macbook pro 13 inch mid 2010 crashing for no apparent reason

    Hi there guys,
    My Macbook Pro for the last few months keeps crashing for no apparant reason. I say this because it does not seem to matter what program I am running, how many programs I am running, or indeed have anything to do with my software. Im now sure of this because I took it to the genius bar today and they gave me a system format/reset and the problem is still there. 
    They also ran diagnostics on the hardware and everything seemed to be ok...
    Has anyone else had this problem? I'll paste my report after my latest crash below incase anyone can make heads or tails of it!
    Thanks everyone!
    Anonymous UUID:       9E59F1A9-A0A2-D50A-5EAF-32E0B742523A
    Mon May 19 17:39:08 2014
    panic(cpu 0 caller 0xffffff801fedbe2e): Kernel trap at 0xffffff801fe4bc46, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffef8034b467b0, CR3: 0x0000000022bd4000, CR4: 0x0000000000000660
    RAX: 0xffffef8034b46780, RBX: 0xffffff80fba1f068, RCX: 0x0000000009000000, RDX: 0xffffff80fba1f088
    RSP: 0xffffff810835be00, RBP: 0xffffff810835be60, RSI: 0x0000002d5fd901a7, RDI: 0xffffff80fba1f088
    R8:  0x0000000000000000, R9:  0x0000000000000000, R10: 0x00000000ffffffff, R11: 0xffffff80346f0810
    R12: 0xffffff80fba1f088, R13: 0xffffff80204fdbb8, R14: 0x0000000000000000, R15: 0xffffff80204d2b00
    RFL: 0x0000000000010006, RIP: 0xffffff801fe4bc46, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0xffffef8034b467b0, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff810835ba90 : 0xffffff801fe22fa9
    0xffffff810835bb10 : 0xffffff801fedbe2e
    0xffffff810835bce0 : 0xffffff801fef3326
    0xffffff810835bd00 : 0xffffff801fe4bc46
    0xffffff810835be60 : 0xffffff801fe35a10
    0xffffff810835beb0 : 0xffffff801fe367da
    0xffffff810835bf40 : 0xffffff801fe35d8c
    0xffffff810835bf80 : 0xffffff80202acc0f
    0xffffff810835bfb0 : 0xffffff801fed6ff7
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13C64
    Kernel version:
    Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    Kernel UUID: 9FEA8EDC-B629-3ED2-A1A3-6521A1885953
    Kernel slide:     0x000000001fc00000
    Kernel text base: 0xffffff801fe00000
    System model name: MacBookPro7,1 (Mac-F222BEC8)
    System uptime in nanoseconds: 194872029570
    last loaded kext at 190985985109: com.apple.driver.AppleIntelMCEReporter          104 (addr 0xffffff7fa21aa000, size 49152)
    last unloaded kext at 125253391534: com.apple.driver.AppleMCP89RootPortPM          1.11 (addr 0xffffff7fa1d2b000, size 24576)
    loaded kexts:
    com.apple.driver.AppleIntelMCEReporter          104
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AGPM          100.14.15
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleBluetoothMultitouch          80.14
    com.apple.iokit.IOBluetoothSerialManager          4.2.3f10
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AppleHDA          2.6.0f1
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.GeForceTesla          8.2.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleMikeyDriver          2.6.0f1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.AppleBacklight          170.3.5
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.driver.AppleLPC          1.7.0
    com.apple.driver.SMCMotionSensor          3.0.4d1
    com.apple.driver.AppleUSBTCButtons          240.2
    com.apple.driver.AppleIRController          325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.driver.AppleUSBTCKeyboard          240.2
    com.apple.driver.AppleUSBCardReader          3.4.1
    com.apple.iokit.SCSITaskUserClient          3.6.6
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.5.1
    com.apple.iokit.AppleBCM5701Ethernet          3.8.1b2
    com.apple.driver.AirPort.Brcm4331          700.20.22
    com.apple.driver.AppleUSBHub          666.4.0
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AppleAHCIPort          3.0.0
    com.apple.driver.AppleUSBOHCI          656.4.1
    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          216.0.0
    com.apple.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.AppleGraphicsDeviceControl          3.4.35
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleMultitouchDriver          245.13
    com.apple.driver.AppleBluetoothHIDKeyboard          170.15
    com.apple.driver.IOBluetoothHIDDriver          4.2.3f10
    com.apple.driver.AppleHIDKeyboard          170.15
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.driver.DspFuncLib          2.6.0f1
    com.apple.vecLib.kext          1.0.0
    com.apple.iokit.IOAudioFamily          1.9.5fc2
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.iokit.IOSurface          91
    com.apple.iokit.IOBluetoothFamily          4.2.3f10
    com.apple.driver.AppleHDAController          2.6.0f1
    com.apple.iokit.IOHDAFamily          2.6.0f1
    com.apple.nvidia.classic.NVDANV50HalTesla          8.2.4
    com.apple.nvidia.classic.NVDAResmanTesla          8.2.4
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.iokit.IOFireWireIP          2.2.6
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.driver.IOPlatformPluginFamily          5.7.0d10
    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.iokit.IOSCSIBlockCommandsDevice          3.6.6
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.driver.AppleUSBComposite          656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.6.6
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.6
    com.apple.iokit.IOEthernetAVBController          1.0.3b4
    com.apple.driver.mDNSOffloadUserClient          1.0.1b5
    com.apple.iokit.IO80211Family          630.35
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOUSBUserClient          660.4.2
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.6.5
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.iokit.IOUSBFamily          675.4.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.driver.NVSMU          2.2.9
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          278.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOReportFamily          23
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.9
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    com.apple.kec.pthread          1

    That panic was not caused by third-party software. If the problem is recurrent, the possibilities are:
    A stale or corrupt kernel cache
    A damaged OS X installation
    A fault in a peripheral device, if any
    Corrupt non-volatile memory (NVRAM)
    An internal hardware fault (including incompatible memory)
    An obscure bug in OS X
    You may already have ruled out some of these.
    Rule out #1 by starting up in safe mode and then restarting as usual. Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Post for further instructions.
    You can rule out #2 and #3 by reinstalling the OS and testing with non-essential peripherals disconnected and aftermarket expansion cards removed, if applicable. Sometimes a clean reinstallation may solve a problem that isn't solved by reinstalling in place.
    Corrupt NVRAM, which rarely causes panics, can be ruled out by resetting it.
    If your model has user-replaceable memory, and you've upgraded the memory modules, reinstall the original memory and see whether there's any improvement. Be careful not to touch the gold contacts. Clean them with a mild solvent such as rubbing alcohol. Aftermarket memory must exactly match the technical specifications of the machine.
    Apple Diagnostics or the Apple Hardware Test, though generally unreliable, will sometimes detect a fault. A negative test can't be depended on. Run the extended version of the test, if applicable.
    In the category of obscure bugs, reports suggest that FileVault may trigger kernel traps under some unknown conditions. Most, though not all, of these reports seem to involve starting up from an aftermarket SSD. If those conditions apply to you, try deactivating FileVault.
    Even if FileVault is not active, an aftermarket SSD may be the cause of kernel panics. Check the manufacturer's website for a firmware update.
    Connecting more than one display is another reported trigger for OS X bugs.
    If the system is not fully up to date, running Software Update might get you a bug fix.
    In rare cases, a malformed network packet from a defective router or other network device can cause panics. Such packets could also be sent deliberately by a skillful attacker. This possibility is something to consider if you run a public server that might be the target of such an attack.
    Otherwise, make a "Genius" appointment at an Apple Store, or go to another authorized service provider to have the machine tested. You may have to leave it there for several days. There isn't much point in doing this unless you can reproduce the panic, or if you can't, it happens often enough that it's likely to be repeated at the store. Otherwise you may be told that nothing is wrong.
    Print the first page of the panic report and bring it with you.

  • Firefox has crashed for me about 5 times in a 20 min span. A total of about 10 times today. What's wrong with it? Is it my laptop

    Firefox has crashed for me about 5 times in a 20 min span. A total of about 10 times today. What's wrong with it? Is it my laptop? Sometimes as soon as I open it, it just crashes.

    I started my work in safe mode still facing the same problem.
    bp-f5ee8a8f-e696-4465-82ba-7f1ac2130313 3/13/20131:13 PM
    bp-2f8bb393-9de8-41c9-843c-a46c62130313 3/13/20131:09 PM
    bp-a930e700-04c1-4d6e-985a-5d7482130313 3/13/20131:02 PM

  • My Iphoto has crashed for the last month or so!  Please help!

    Hi all,
    I am a real apple amateur and newcomer.  And I have nobody to speak to about this problem, so please help! 
    My IPhoto has been crashing for the last month.  Every time that I open it, I get the spinning circle, that spins continuously, and I can do nothing but close it down through the utilities.  I have bought an external hard drive and managed to save all of my photos/images onto this, shich is a weight off my mind. However, I need a photo package to work.
    Thus far, I have tried to uninstall the IPhoto programme (by deleting it) and then reinstalling it from the disc.
    My computer is a:
    Model Name:          iMac
      Model Identifier:          iMac10,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          3.06 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          3 MB
      Memory:          4 GB
      Bus Speed:          1.07 GHz
      Boot ROM Version:          IM101.00CC.B00
      SMC Version (system):          1.52f9
      Serial Number (system):          W801450V5PC
      Hardware UUID:          4D89A7AF-98E6-5A27-B961-7D68B5A553F7
    If there is anyone that can help me, I would be forever grateful.
    Best wishes,
    Steve

    Hi all,
    Paul - thank you for the clear instructions.  I followed them and had some success.  Upon opening IPhoto with the Option and Command keys held down, I ticked everything and the 'rebuilding' occurred.
    IPhoto now opens.  However, for only a few seconds.  At this point a message presents itself stating that 'IPhoto has quit unexpectedly'.  This happens every time I try to reopen IPhoto.  When asking for details, a page of computer code pops up.  Now this computeter code is so far beyond me it may as well be written in Martian! 
    I am hoping that the following may mean something to you, Paul, or indeed anyone else who may be able to help.  Many thnaks for any assistance anyone can offer.
    Steve
    Process:         iPhoto [287]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         8.1 (8.1)
    Build Info:      iPhotoProject-4150000~4
    Code Type:       X86 (Native)
    Parent Process:  launchd [105]
    Date/Time:       2011-12-03 08:46:18.766 +0000
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          807901 sec
    Crashes Since Last Report:           5
    Per-App Interval Since Last Report:  5165 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      44493BAE-FEA2-477B-9986-8764C62AE6CB
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000024
    Crashed Thread:  13
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x94fcfafa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x94fd0267 mach_msg + 68
    2   com.apple.CoreFoundation                0x91d242df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x91d233c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x91d231f1 CFRunLoopRunInMode + 97
    5   com.apple.HIToolbox                     0x966a6e04 RunCurrentEventLoopInMode + 392
    6   com.apple.HIToolbox                     0x966a6bb9 ReceiveNextEventCommon + 354
    7   com.apple.HIToolbox                     0x966a6a3e BlockUntilNextEventMatchingListInMode + 81
    8   com.apple.AppKit                        0x91eb2595 _DPSNextEvent + 847
    9   com.apple.AppKit                        0x91eb1dd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    10  com.apple.AppKit                        0x91e741f3 -[NSApplication run] + 821
    11  com.apple.AppKit                        0x91e6c289 NSApplicationMain + 574
    12  com.apple.iPhoto                        0x00123e6a 0x1000 + 1191530
    13  com.apple.iPhoto                        0x0000354e 0x1000 + 9550
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x94ff6382 kevent + 10
    1   libSystem.B.dylib                       0x94ff6a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x94ff5f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x94ff5cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x94ff5781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x94ff55c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x94fcfb5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x94ffd6e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x9502c5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x984848e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x9843d3b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x9843d294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x00f6a201 -[XTMsgQueue waitForMessage] + 49
    7   com.apple.proxtcore                     0x00f58363 -[XTThread run:] + 387
    8   com.apple.Foundation                    0x984484c4 -[NSThread main] + 45
    9   com.apple.Foundation                    0x98448474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x94ffd259 _pthread_start + 345
    11  libSystem.B.dylib                       0x94ffd0de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x94ff5412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x94ff59a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x94ff55c6 start_wqthread + 30
    Thread 4:
    0   libSystem.B.dylib                       0x94fcfb5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x94ffd6e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x9502c5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x984848e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x9843d3b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x9843d294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x00f6a201 -[XTMsgQueue waitForMessage] + 49
    7   com.apple.proxtcore                     0x00f58363 -[XTThread run:] + 387
    8   com.apple.Foundation                    0x984484c4 -[NSThread main] + 45
    9   com.apple.Foundation                    0x98448474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x94ffd259 _pthread_start + 345
    11  libSystem.B.dylib                       0x94ffd0de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x94fcfafa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x94fd0267 mach_msg + 68
    2   com.apple.CoreFoundation                0x91d242df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x91d233c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x91d231f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x984821b3 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore                     0x00f598a5 -[XTRunLoopThread run:] + 421
    7   com.apple.Foundation                    0x984484c4 -[NSThread main] + 45
    8   com.apple.Foundation                    0x98448474 __NSThread__main__ + 1499
    9   libSystem.B.dylib                       0x94ffd259 _pthread_start + 345
    10  libSystem.B.dylib                       0x94ffd0de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x94ffdaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x94ffd75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x94fff3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.iPhoto                        0x00505a15 0x1000 + 5261845
    4   com.apple.Foundation                    0x984484c4 -[NSThread main] + 45
    5   com.apple.Foundation                    0x98448474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x94ffd259 _pthread_start + 345
    7   libSystem.B.dylib                       0x94ffd0de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x94fcfafa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x94fd0267 mach_msg + 68
    2   com.apple.CoreFoundation                0x91d242df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x91d233c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x91d231f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x98481224 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x984484c4 -[NSThread main] + 45
    7   com.apple.Foundation                    0x98448474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x94ffd259 _pthread_start + 345
    9   libSystem.B.dylib                       0x94ffd0de thread_start + 34
    Thread 8:  WebCore: LocalStorage
    0   libSystem.B.dylib                       0x94ffdaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x94ffd75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x94fff3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.JavaScriptCore                0x98a0abf1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4   libSystem.B.dylib                       0x94ffd259 _pthread_start + 345
    5   libSystem.B.dylib                       0x94ffd0de thread_start + 34
    Thread 9:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x94feeac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x91d63c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x94ffd259 _pthread_start + 345
    3   libSystem.B.dylib                       0x94ffd0de thread_start + 34
    Thread 10:  JavaScriptCore::BlockFree
    0   libSystem.B.dylib                       0x94ffdaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x94ffd75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x94ffd2b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.apple.JavaScriptCore                0x98a0ac3c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    Thread 11:
    0   libSystem.B.dylib                       0x94ffdaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x94ffd75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x94fff3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.Foundation                    0x984706b3 -[NSCondition wait] + 316
    4   com.apple.iPhoto                        0x005115ae 0x1000 + 5309870
    5   com.apple.iPhoto                        0x00510dcc 0x1000 + 5307852
    6   com.apple.Foundation                    0x984484c4 -[NSThread main] + 45
    7   com.apple.Foundation                    0x98448474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x94ffd259 _pthread_start + 345
    9   libSystem.B.dylib                       0x94ffd0de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x94ffdaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x94ffd75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x94fff3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.Foundation                    0x984706b3 -[NSCondition wait] + 316
    4   com.apple.iPhoto                        0x005115ae 0x1000 + 5309870
    5   com.apple.iPhoto                        0x00510dcc 0x1000 + 5307852
    6   com.apple.Foundation                    0x984484c4 -[NSThread main] + 45
    7   com.apple.Foundation                    0x98448474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x94ffd259 _pthread_start + 345
    9   libSystem.B.dylib                       0x94ffd0de thread_start + 34
    Thread 13 Crashed:
    0   com.apple.iPhoto                        0x00300f6e 0x1000 + 3145582
    1   com.apple.Foundation                    0x98443ddc _decodeObjectBinary + 2902
    2   com.apple.Foundation                    0x98444be8 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1438
    3   com.apple.Foundation                    0x98445255 -[NSArray(NSArray) initWithCoder:] + 586
    4   com.apple.Foundation                    0x98443ddc _decodeObjectBinary + 2902
    5   com.apple.Foundation                    0x98444be8 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1438
    6   com.apple.Foundation                    0x984601cd -[NSDictionary(NSDictionary) initWithCoder:] + 900
    7   com.apple.Foundation                    0x98443ddc _decodeObjectBinary + 2902
    8   com.apple.Foundation                    0x98444be8 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1438
    9   com.apple.Foundation                    0x98445255 -[NSArray(NSArray) initWithCoder:] + 586
    10  com.apple.Foundation                    0x98443ddc _decodeObjectBinary + 2902
    11  com.apple.Foundation                    0x984430d4 _decodeObject + 180
    12  com.apple.iPhoto                        0x00303b12 0x1000 + 3156754
    13  com.apple.iPhoto                        0x003043e6 0x1000 + 3159014
    14  com.apple.iPhoto                        0x00064daf 0x1000 + 409007
    15  com.apple.iPhoto                        0x00218882 0x1000 + 2193538
    16  com.apple.Foundation                    0x984484c4 -[NSThread main] + 45
    17  com.apple.Foundation                    0x98448474 __NSThread__main__ + 1499
    18  libSystem.B.dylib                       0x94ffd259 _pthread_start + 345
    19  libSystem.B.dylib                       0x94ffd0de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x94ffdaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x94ffd75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x94fff3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.iPhoto                        0x00505a15 0x1000 + 5261845
    4   com.apple.Foundation                    0x984484c4 -[NSThread main] + 45
    5   com.apple.Foundation                    0x98448474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x94ffd259 _pthread_start + 345
    7   libSystem.B.dylib                       0x94ffd0de thread_start + 34
    Thread 13 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0x00000000  ecx: 0x1f02f140  edx: 0x00000001
      edi: 0x00000000  esi: 0x000e31ff  ebp: 0xb05ad348  esp: 0xb05ad2a0
       ss: 0x0000001f  efl: 0x00010282  eip: 0x00300f6e   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000024
    Binary Images:
        0x1000 -   0x9f9ff6  com.apple.iPhoto 8.1 (8.1) <BA513FFF-DD54-8ED9-3219-FE889216D6F7> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xb2f000 -   0xb5afff  com.apple.DiscRecordingUI 5.0.9 (5090.4.2) <3E6CC284-2F1B-9EDB-0B56-872F962669A2> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
      0xb72000 -   0xc27fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
      0xc6d000 -   0xc77fff  com.apple.UpgradeChecker 1.0 (1.1) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
      0xc81000 -   0xd1dffc  com.apple.MobileMe 8 (1.0) <47DF6C20-78C5-1AA2-1D64-274EAE522D93> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
      0xd7f000 -   0xd7ffff +eOkaoCom.dylib ??? (???) <17ADB0F4-BF83-0B0B-5293-F843F1724644> /Applications/iPhoto.app/Contents/MacOS/eOkaoCom.dylib
      0xd83000 -   0xdb6fe7 +eOkaoDt.dylib ??? (???) <673BD0C5-FAC4-ABB7-B55E-FD8A75E4759D> /Applications/iPhoto.app/Contents/MacOS/eOkaoDt.dylib
      0xdbc000 -   0xf22fff +eOkaoFr.dylib ??? (???) <684982FE-55E4-174D-9CF3-DA4319BD57F9> /Applications/iPhoto.app/Contents/MacOS/eOkaoFr.dylib
      0xf26000 -   0xf4aff2 +eOkaoPt.dylib ??? (???) <E2ED8DE8-7A2D-8309-3CB5-2E87F135A8A8> /Applications/iPhoto.app/Contents/MacOS/eOkaoPt.dylib
      0xf51000 -   0xf98ff7  com.apple.proxtcore 1.0.0 (1.0.0) /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
      0xfdc000 -   0xfdcff8  com.apple.iLifeSlideshow 1.1 (452) <65FE31A8-C4C3-2069-9B2C-CB00BB168CFE> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
      0xfe0000 -  0x1060fef  com.apple.NetServices.NetServices 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x10c2000 -  0x10c2ff7  com.apple.AppleAppSupport 1.5 (1.5) <9FD82212-62A9-A388-940B-2343D69889C3> /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x10c6000 -  0x10eefff  com.apple.iLifeSlideshowCore 1.1 (134) <6B3AA83C-6198-9C49-7AFB-619E5DC2C756> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowCore.framework/Versions/A/iLifeSlideshowCore
    0x1108000 -  0x1218fe3  com.apple.iLifeSlideshowProducer 1.1 (382) <BBC8AFE4-95A6-4993-C10C-FF8AAC006928> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowProducer.framework/Versions/A/iLifeSlideshowProducer
    0x128b000 -  0x1394ff3  com.apple.iLifeSlideshowRenderer 1.1 (375) <F8723883-3C5C-734F-CD08-709E4079B2C5> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x1408000 -  0x1413fff  com.apple.iLifeSlideshowExporter 1.1 (159) <A378AE26-9698-2327-CDAA-D2AF255DE5BE> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowExporter.framework/Versions/A/iLifeSlideshowExporter
    0x141c000 -  0x1445fe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1456000 -  0x145efe7  com.apple.NetServices.BDControl 1.0.5 (1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x146a000 -  0x146dfff  com.apple.NetServices.BDRuleEngine 1.0.2 (1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x15757000 - 0x1575bfff  com.apple.iPhoto.RSSPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x1587c000 - 0x15891fff  com.apple.iPhoto.FacebookPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x1589e000 - 0x158aeff3  com.apple.iPhoto.FlickrPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x158b9000 - 0x158eaff7  com.apple.iPhoto.MobileMePublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x15951000 - 0x15952ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x15972000 - 0x15973ff7  com.apple.iLMBAppDefPlugin 2.5.5 (252.2.5) <23D52DA9-0F87-6EAA-990E-2864C4B6D6AA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x18044000 - 0x1804ffff  com.apple.BookService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x18059000 - 0x18063fff  com.apple.CalendarsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x1806d000 - 0x18077fff  com.apple.CardsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x18081000 - 0x1808cfff  com.apple.PrintsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x180bd000 - 0x180c5ff7  com.apple.iLMBAperturePlugin 2.5.5 (252.2.5) <BF2A071D-6F1C-03BA-DD1B-74F93CE9D7B0> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x180cc000 - 0x180d6ff7  com.apple.iLMBFinalCutPlugin 2.5.5 (252.2.5) <B089F264-64BE-07DE-E250-D5C63C351222> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFinalCutPlugin.ilmbplugin/Contents/MacOS /iLMBFinalCutPlugin
    0x180dc000 - 0x180deff7  com.apple.iLMBFolderPlugin 2.5.5 (252.2.5) <0896FA5E-8453-B2F6-8E87-F5F2FA382395> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x180e3000 - 0x180e7ff7  com.apple.iLMBGarageBandPlugin 2.5.5 (252.2.5) <E10E678C-831C-7A6B-1A56-775CD81DA98E> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x180ed000 - 0x180f9ff7  com.apple.iLMBiMoviePlugin 2.5.5 (252.2.5) <313540B0-C7D2-5EB4-C688-0FCB9FFD5E81> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x194a6000 - 0x194baffb  com.apple.iLMBiPhoto8Plugin 2.5.5 (252.2.5) <0016975B-CA8E-76EA-3BF7-BAD4C8834814> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x194c2000 - 0x194cbff7  com.apple.iLMBiPhotoPlugin 2.5.5 (252.2.5) <D6F8A353-CDC4-A9B8-383E-5D6F7FBAF593> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x194d2000 - 0x194daff7  com.apple.iLMBiTunesPlugin 2.5.5 (252.2.5) <4A54C561-8932-6E09-BDAE-C030D494E0DA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x194e1000 - 0x194e3ff7  com.apple.iLMBMoviesFolderPlugin 2.5.5 (252.2.5) <4A70635B-4CF4-8F65-BF6D-3B6F18838A23> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x194e8000 - 0x194eaff7  com.apple.iLMBPhotoBoothPlugin 2.5.5 (252.2.5) <77BE4315-C665-3243-B857-64895276EFA1> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x19700000 - 0x19849fe7  com.apple.iLMBAperture31Plugin 2.5.5 (252.2.5) <2AA8E13C-4221-698B-F755-DB8103D191B9> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperture31Plugin.ilmbplugin/Contents/Mac OS/iLMBAperture31Plugin
    0x1988a000 - 0x199d6fe7  com.apple.iLMBiPhoto9Plugin 2.5.5 (252.2.5) <86E4AD5A-1233-9F42-B4BD-CECFFC4C4ACD> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto9Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto9Plugin
    0x19a19000 - 0x19ac9ff3  com.apple.iTunesAccess 10.5 (10.5) <47FFADAD-AB98-6BA9-B5BE-EA4AE2DA4CDB> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x1a90e000 - 0x1a90eff7  com.apple.JavaPluginCocoa 13.5.0 (13.5.0) <34B63911-FED7-EFF3-F47C-F0612FF92179> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x1a913000 - 0x1a917ff7  JavaLaunching ??? (???) <91BF8AB9-AFE3-F32B-B657-959C49CF4928> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x90029ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9002a000 - 0x900fbfe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <1C3E1CEF-6E88-4EAF-8A6E-4EC4C5642DDB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x900fc000 - 0x90107ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90108000 - 0x90148fe7  com.apple.IMCore 5.0.5 (747) <625F3A2B-3E43-2BD2-99C0-58E1C1765F65> /System/Library/Frameworks/IMCore.framework/Versions/A/IMCore
    0x90149000 - 0x9014ffff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90150000 - 0x90251fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x90252000 - 0x902b6ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x902b7000 - 0x902fbff3  com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x902fc000 - 0x90344fff  com.apple.iCalendar 1.0.3 (54) <1FF7C991-491D-6708-51C2-08FF8916BD84> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x90345000 - 0x9035afff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9035b000 - 0x903a8feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x903aa000 - 0x9060ffeb  com.apple.security 6.1.2 (55002) <7F00A51B-F22A-0EBC-A321-923472D686BD> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90610000 - 0x90659fe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9065a000 - 0x90a8fff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90a90000 - 0x90ad5ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x90bb5000 - 0x90bc6ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90bc7000 - 0x90c49ffb  SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x90c4a000 - 0x90cc4fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90cc5000 - 0x90cecff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x90ced000 - 0x90cf7ff7  com.apple.dotMacLegacy 3.2 (266) <6F2588BA-E801-1664-E60C-5BEC2AF924D0> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x90cf8000 - 0x90d17ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90d18000 - 0x90d52ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <6875335E-0993-0D77-4E80-41763A8477CF> /usr/lib/libcups.2.dylib
    0x90d53000 - 0x90e55fef  com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x90e58000 - 0x90f9bfef  com.apple.QTKit 7.7 (1787) <3B47A1A0-7AB5-C1C9-42DE-5993D1012D47> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x90f9c000 - 0x90f9cff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90f9d000 - 0x9101aff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x91074000 - 0x9109afe3  com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <4144A00E-8E82-8142-6A81-12D3E2D923EA> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x9109b000 - 0x91406ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x91407000 - 0x91407ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91408000 - 0x91443feb  libFontRegistry.dylib ??? (???) <AD45365E-A3EA-62B8-A288-1E13DBA22B1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x91444000 - 0x9185aff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9185b000 - 0x91956fff  com.apple.PubSub 1.0.5 (65.28) <9B97DE47-66EC-9F6C-3A32-0EBBE7925CCE> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x919c9000 - 0x919caff7  com.apple.TrustEvaluationAgent 1.1 (1) <8C570606-D77C-738E-7148-6B28846F0B3C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x919cb000 - 0x91a0dff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91a0e000 - 0x91b3bffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x91b3c000 - 0x91be8fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91be9000 - 0x91c19ff7  com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x91c45000 - 0x91c9ffe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91ca0000 - 0x91ca4ff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91ca5000 - 0x91ce6ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91ce7000 - 0x91e62fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91e63000 - 0x91e65ff7  com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91e66000 - 0x91e69ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91e6a000 - 0x9274dff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9274e000 - 0x927cefeb  com.apple.SearchKit 1.3.0 (1.3.0) <2F5DE102-A203-7905-7D12-FCBCF17BAEF8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92802000 - 0x92852ff7  com.apple.Symbolication 1.1 (67) <A173E87D-4F8D-C1F1-891C-48981656F84C> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x9298a000 - 0x92991ff7  com.apple.aps.framework 1.2 (1.2) <16A7DB74-F951-D8DB-35D0-5E5673529AB0> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x92992000 - 0x92996ff7  libGIF.dylib ??? (???) <2123645B-AC89-C4E2-8757-85834CAE3DD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92997000 - 0x929a3ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x929a4000 - 0x929b6ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x929b7000 - 0x92af4fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <2D31CC6F-32CC-72FF-34EC-AB40CEE496A7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92af5000 - 0x92b0dff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x92b0e000 - 0x92b0fff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <838E1760-F7D9-3239-B3A8-20E25EFD1379> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92b10000 - 0x92b43fff  libTrueTypeScaler.dylib ??? (???) <0F04DAC3-829A-FA1B-E9D0-1E9505713C5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x92b44000 - 0x92b7efe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x92b98000 - 0x92be8ff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x92bec000 - 0x92befff7  libCoreVMClient.dylib ??? (???) <F58BDFC1-7408-53C8-0B08-48BA2F25CA43> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x92bf0000 - 0x933df557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x933e0000 - 0x933e7ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x933ed000 - 0x93488fe7  com.apple.ApplicationServices.ATS 275.19 (???) <9FA31967-CF14-B033-EB8D-570561D12A13> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x93489000 - 0x93491ff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x93492000 - 0x9349fff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x934a0000 - 0x934d8ff7  com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x93b36000 - 0x93c42ff7  libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93c43000 - 0x93cb7fef  com.apple.CoreSymbolication 2.0 (23) <8C63D09A-6DF5-082A-553B-3E7610604C5D> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x93cb8000 - 0x93cccffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <0DBE17D5-17A2-8A0E-8572-5A78408B41C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93e92000 - 0x93f0dfff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93f0e000 - 0x93fcafff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93fcb000 - 0x9400bff3  com.apple.securityinterface 4.0.1 (40418) <26D84A83-F5B9-93CF-71BB-0712698181EE> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9400c000 - 0x94028fe3  com.apple.openscripting 1.3.1 (???) <DE20A1B9-F9B6-697C-B533-F5869BA43077> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94029000 - 0x94070ffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x94071000 - 0x940c4ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x940c5000 - 0x94207ff7  com.apple.syncservices 5.2 (578.3) <16A29689-1A80-3065-C4E7-AEC6A3C05C2E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x94208000 - 0x943e6feb  libType1Scaler.dylib ??? (???) <59FE1036-1BC2-1A8E-F7C6-E0CC15A4D6D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x943e7000 - 0x943f2ff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x943f3000 - 0x944befef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x944bf000 - 0x94529fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x9452a000 - 0x94599ff7  com.apple.ISSupport 1.9.7 (55) <77905553-740D-90E8-6B2E-ABF5B3D40CBF> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x945a4000 - 0x9463cfe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9463d000 - 0x9465bff7  com.apple.iChat.IMFoundation 5.0.5 (747) <4F6827AF-F713-A8F8-92E8-C9EC59D92416> /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
    0x946a2000 - 0x946dfff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x946e0000 - 0x946e0ff7  com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x946e1000 - 0x94717fff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x94718000 - 0x9471dff7  com.apple.AOSNotification 1.2.0 (124) <3CDBCEB8-1078-7152-10CE-001B772AF04F> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x9471e000 - 0x9472cff7  com.apple.opengl 1.6.13 (1.6.13) <025A905D-C1A3-B24A-1585-37C328D77148> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9476f000 - 0x94781ff7  com.apple.syncservices.syncservicesui 5.2 (578.3) <D3B86149-3466-B202-DBC1-06C575D451EB> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x9478f000 - 0x94793ff7  libGFXShared.dylib ??? (???) <801B2C2C-1692-475A-BAD6-99F85B6E7C25> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x94794000 - 0x94be5fef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x94be6000 - 0x94c3efe7  com.apple.datadetectorscore 2.0 (80.7) <18C2FB6A-BF60-F838-768C-0306151C21DA> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x94c3f000 - 0x94c46ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94c71000 - 0x94c7bffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <45083DBA-5EA4-9B90-8BEB-A089E515180F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94d1d000 - 0x94d1dff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x94d1e000 - 0x94d3bfe7  com.apple.DotMacSyncManager 2.0.3 (446.9) <11FAEB92-AA44-CFA4-F2D3-73687984BAFD> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x94d3c000 - 0x94d89ff7  com.apple.ExchangeWebServices 1.3 (61) <B3705083-4186-5A27-6003-58E7264CAA3E> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x94d8a000 - 0x94d8aff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94d8b000 - 0x94d90ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x94d91000 - 0x94d91ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94da3000 - 0x94fceff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x94fcf000 - 0x95176ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x95177000 - 0x9517eff7  com.apple.KerberosHelper 2.1 (1.0) <6E7C7A11-E30F-42DF-0F40-AEEF7A0BAEF2> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x9517f000 - 0x95478fe7  com.apple.MessageFramework 4.5 (1084) <DF6AC752-F789-3BC3-5E69-0FEB1A8B4340> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x95484000 - 0x955aafe7  com.apple.WebKit 6534.51 (6534.51.22) <8E713C26-E90D-0E4B-5FE1-7AFFA8DF2935> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x955ab000 - 0x95601ff7  com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x95602000 - 0x9560ffe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <CC90193E-BDF7-2F0F-6C68-D9567EDDA4B3> /usr/lib/libbz2.1.0.dylib
    0x95610000 - 0x95792fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x95793000 - 0x9579cff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9579d000 - 0x957adff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x957ae000 - 0x957cffe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x957d0000 - 0x95c8bff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x95c8c000 - 0x95d44feb  libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x95d45000 - 0x95f4cfeb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95f95000 - 0x95f95ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x95f96000 - 0x95fc9ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95fca000 - 0x95ffbff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96027000 - 0x96209fff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9620a000 - 0x9652aff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9652b000 - 0x965a4ff7  com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96670000 - 0x96671ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96672000 - 0x96996fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x969a7000 - 0x969b1fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x969e7000 - 0x969f2ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x96b0a000 - 0x96b1aff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x96b1b000 - 0x96b21ff7  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <6EE825E7-CBA5-2AD2-0336-244D45A1A834> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x96b22000 - 0x97886fe7  com.apple.WebCore 6534.51 (6534.51.22) <1E9475BF-87F2-A81F-E096-BBB126BCDF30> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x97887000 - 0x978c0fe7  com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x978c1000 - 0x979effe7  com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97a9a000 - 0x97d94fef  com.apple.QuickTime 7.6.6 (1787) <AC48EAD9-7201-7CE6-C826-41B12963FECF> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x97d95000 - 0x98410ff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x98411000 - 0x9841cff7  com.apple.NSServerNotificationCenter 3.0 (3.0) <0803C7DC-A7C5-03D5-4C84-4D4097542BE0> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x9841d000 - 0x98431fe7  libbsm.0.dylib ??? (???) <821E415B-6C42-D359-78FF-E892792F8C52> /usr/lib/libbsm.0.dylib
    0x98432000 - 0x986a3fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x986a4000 - 0x986a7ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x986a8000 - 0x98716ff7  com.apple.WhitePagesFramework 10.6.0 (140.0) <01471458-86B0-EFF3-1037-B5610E9B19DA> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x98717000 - 0x987f7fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x987f8000 - 0x9883cfe7  com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9883d000 - 0x988edfe3  com.apple.QuickTimeImporters.component 7.6.6 (1787) <B44DD024-3C2A-6A3A-2C94-EBF0CBA06067> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x988ee000 - 0x988fbff7  com.apple.AppleFSCompression 24.4 (1.0) <6D696284-020B-7F5C-226D-B820F0E981D2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x988fc000 - 0x989fefe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x989ff000 - 0x98c48ffb  com.apple.JavaScriptCore 6534.51 (6534.51.21) <EA8C05E3-4719-B3FA-E17E-EC9BBC09F5B2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x98c62000 - 0x98cd1ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x98cd2000 - 0x98dacfff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x98dad000 - 0x98deaff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x98deb000 - 0x98e62ff3  com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x98e63000 - 0x99db8ffb  com.apple.QuickTimeComponents.component 7.6.6 (1787) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99db9000 - 0x99ddbfef  com.apple.DirectoryService.Framework 3.6 (621.11) <CA979EAC-9537-43B6-CD69-C144ACB75E09> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x99def000 - 0x99eccfe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x99ecd000 - 0x99f0dfe7  com.apple.DAVKit 4.0.3 (732.2) <EF9AA2D1-718F-40BE-4DB7-E62A767801AF> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x99f52000 - 0x99ffaffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x99ffb000 - 0x9a01fff7  libJPEG.dylib ??? (???) <EA97DEC5-6E16-B51C-BF55-F6E8D23526AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9a020000 - 0x9a1e2feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <027F55DF-7E4E-2310-1536-3F470CB8847B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9a1e3000 - 0x9a1e3ff7  com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9a1e4000 - 0x9a292ff3  com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9a293000 - 0x9a2d6ff7  com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9a2d7000 - 0x9a2dafe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x9a2db000 - 0x9a4b7fe7  com.apple.CalendarStore 4.0.4 (997.7) <F0077132-B7E4-A612-7D76-46EB1DE9C80E> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x9a4b8000 - 0x9a4f6ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9a4f7000 - 0x9a4fdfe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9a523000 - 0x9a538ff7  com.apple.iChat.InstantMessage 5.0.5 (747) <4E1D077E-3733-5565-ADB9-C9B2C3EC89BE> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a539000 - 0x9a5cbfe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9a5cc000 - 0x9a679fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x9a67a000 - 0x9a6bdff7  libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9a6be000 - 0x9a6c0fe7  com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x9a6c1000 - 0x9a6dcff7  libPng.dylib ??? (???) <25DF2360-BFD3-0165-51AC-0BDAF7899DEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9a7e4000 - 0x9a89dfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x9a89e000 - 0x9a89eff7  com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9a89f000 - 0x9a8bffe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x9a8c0000 - 0x9a8cefe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x9a8cf000 - 0x9a8d6ff7  com.apple.iChat.IMUtils 5.0.5 (747) <165000D5-219A-DFAE-68C6-25F6ED12A00B> /System/Library/Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versio ns/A/IMUtils
    0x9a8d7000 - 0x9a91dff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x9a91e000 - 0x9a97bff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9a97c000 - 0x9a97eff7  libRadiance.dylib ??? (???) <5920EB69-8D7F-5EFD-70AD-590FCB5C9E6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9a97f000 - 0x9a9a7ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x9a9a8000 - 0x9aa16ff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9aa17000 - 0x9aa78fe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9aa79000 - 0x9aab4fe7  com.apple.DebugSymbols 1.1 (70) <1D0447CB-C221-A112-AA68-372951672A3D> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9aaba000 - 0x9ab

  • IMac keeps crashing for no apparent reason

    For the last couple of days my iMac has been crashing for no apparent reason. The only thing I have done that is new is to download, install and play Tomb Raider, from the app store. Each time I have has a crash I have run disk doctor and had no disk errors, and only a minor permissions error.
    The following is an EtreCheck report, and also the latest crash report. Would appreciate any help I can get.
    EtreCheck version: 2.1.5 (108)
    Report generated 29 December 2014 19:08:20 GMT+7
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      iMac (27-inch, Late 2012) (Verified)
      iMac - model: iMac13,2
      1 3.4 GHz Intel Core i7 CPU: 4-core
      32 GB RAM Upgradeable
      BANK 0/DIMM0
      8 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      8 GB DDR3 1600 MHz ok
      BANK 0/DIMM1
      8 GB DDR3 1600 MHz ok
      BANK 1/DIMM1
      8 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      NVIDIA GeForce GTX 680MX - VRAM: 2048 MB
      iMac 2560 x 1440
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 0:59:10
    Disk Information: ℹ️
      APPLE HDD ST3000DM001 disk1 : (3 TB)
      EFI (disk1s1) <not mounted> : 210 MB
      Recovery HD (disk1s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk2) / : 3.11 TB (2.05 TB free)
      Core Storage: disk0s2 120.99 GB Online
      Core Storage: disk1s2 3.00 TB Online
      APPLE SSD SM128E disk0 : (121.33 GB)
      EFI (disk0s1) <not mounted> : 210 MB
      Boot OS X (disk0s3) <not mounted> : 134 MB
      Macintosh HD (disk2) / : 3.11 TB (2.05 TB free)
      Core Storage: disk0s2 120.99 GB Online
      Core Storage: disk1s2 3.00 TB Online
    USB Information: ℹ️
      Apple Inc. MacBook Air SuperDrive
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Applications/Parallels Desktop.app
      [not loaded] com.parallels.kext.hypervisor (10.1.1 28614 - SDK 10.7) [Support]
      [not loaded] com.parallels.kext.netbridge (10.1.1 28614 - SDK 10.7) [Support]
      [not loaded] com.parallels.kext.usbconnect (10.1.1 28614 - SDK 10.7) [Support]
      [not loaded] com.parallels.kext.vnic (10.1.1 28614 - SDK 10.7) [Support]
      /Library/Extensions
      [loaded] com.sophos.kext.sav (9.2.50 - SDK 10.8) [Support]
      [loaded] com.sophos.nke.swi (9.2.50 - SDK 10.8) [Support]
      /System/Library/Extensions
      [not loaded] com.FTDI.driver.FTDIUSBSerialDriver (2.2.18 - SDK 10.6) [Support]
      [loaded] com.logmein.driver.LogMeInSoundDriver (4.1.46f67) [Support]
    Launch Agents: ℹ️
      [invalid?] com.adobe.AAM.Updater-1.0.plist [Support]
      [invalid?] com.displaylink.useragent.plist [Support]
      [invalid?] com.logmein.LMILaunchAgentFixer.plist [Support]
      [running] com.logmein.logmeingui.plist [Support]
      [running] com.logmein.logmeinguiagent.plist [Support]
      [not loaded] com.logmein.logmeinguiagentatlogin.plist [Support]
      [loaded] com.oracle.java.Java-Updater.plist [Support]
      [invalid?] com.parallels.mobile.prl_deskctl_agent.launchagent.plist [Support]
      [running] com.sophos.uiserver.plist [Support]
      [invalid?] com.teamviewer.teamviewer.plist [Support]
      [invalid?] com.teamviewer.teamviewer_desktop.plist [Support]
      [loaded] org.macosforge.xquartz.startx.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [invalid?] com.adobe.SwitchBoard.plist [Support]
      [loaded] com.cyberghostsrl.CyberghostPrivilegedHelper.plist [Support]
      [invalid?] com.displaylink.usbnivolistener.plist [Support]
      [loaded] com.fernlightning.fseventer.plist [Support]
      [invalid?] com.gopro.stereomodestatus.plist [Support]
      [running] com.logmein.logmeinserver.plist [Support]
      [invalid?] com.logmein.raupdate.plist [Support]
      [loaded] com.megacloud.helper.plist [Support]
      [loaded] com.microsoft.office.licensing.helper.plist [Support]
      [loaded] com.noiseindustries.FxFactory.helper.plist [Support]
      [loaded] com.oracle.java.Helper-Tool.plist [Support]
      [loaded] com.oracle.java.JavaUpdateHelper.plist [Support]
      [invalid?] com.parallels.mobile.dispatcher.launchdaemon.plist [Support]
      [failed] com.parallels.mobile.kextloader.launchdaemon.plist [Support]
      [running] com.slinkware.slinkDaemon.plist [Support]
      [running] com.sophos.common.servicemanager.plist [Support]
      [invalid?] com.teamviewer.teamviewer_service.plist [Support]
      [loaded] org.macosforge.xquartz.privileged_startx.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.google.keystone.agent.plist [Support]
      [invalid?] com.littleknownsoftware.MailPluginTool-Watcher.plist [Support]
      [invalid?] com.parallels.mobile.startgui.launchagent.plist [Support]
      [loaded] com.valvesoftware.steamclean.plist [Support]
    User Login Items: ℹ️
      iTunesHelper Application (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Slink Application (/Applications/Slink.app)
      XMenu Application (/Applications/XMenu.app)
      Dropbox Application (/Applications/Dropbox.app)
      Alfred Application (/Applications/Alfred.app)
      BitTorrent Sync Application (/Applications/BitTorrent Sync.app)
      Google Chrome ApplicationHidden (/Applications/Google Chrome.app)
      XtraFinder Application (/Applications/XtraFinder.app)
    Internet Plug-ins: ℹ️
      JavaAppletPlugin: Version: Java 7 Update 71 Check version
      Default Browser: Version: 600 - SDK 10.10
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 [Support]
      AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 [Support]
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Support]
      LogMeIn: Version: 1.0.961 - SDK 10.7 [Support]
      Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
      LogMeInSafari32: Version: 1.0.961 - SDK 10.7 [Support]
      QuickTime Plugin: Version: 7.7.3
      SharePointBrowserPlugin: Version: 14.4.7 - SDK 10.6 [Support]
      AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Support]
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 [Support]
      DirectorShockwave: Version: 12.0.0r112 - SDK 10.6 [Support]
    User internet Plug-ins: ℹ️
      WebEx64: Version: 1.0 - SDK 10.6 [Support]
      CitrixOnlineWebDeploymentPlugin: Version: 1.0.94 [Support]
      Google Earth Web Plug-in: Version: 7.1 [Support]
      RealPlayer Plugin: Version: Unknown [Support]
    Safari Extensions: ℹ️
      OpenIE [Installed]
      Facebook Cleaner [Installed]
      Ghostery [Installed]
      Dr.Web LinkChecker [Installed]
      Search Virustotal.com [Installed]
      Translate [Installed]
      SPOI Options [Installed]
      Awesome Screenshot [Installed]
    3rd Party Preference Panes: ℹ️
      Flash Player  [Support]
      Flip4Mac WMV  [Support]
      FUSE for OS X (OSXFUSE)  [Support]
      GoPro  [Support]
      Java  [Support]
      Slink Agent  [Support]
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 3.11 TB Disk used: 1.06 TB
      Destinations:
      Data [Network]
      Total size: 3.00 TB
      Total number of backups: 40
      Oldest backup: 2014-11-07 18:15:55 +0000
      Last backup: 2014-12-29 10:55:00 +0000
      Size of backup disk: Too small
      Backup size 3.00 TB < (Disk used 1.06 TB X 3)
    Top Processes by CPU: ℹ️
          4% WindowServer
          1% Google Chrome
          1% launchd
          1% Transmission
          0% fontd
    Top Processes by Memory: ℹ️
      344 MB Safari
      344 MB MailTab Pro for Gmail
      309 MB mds_stores
      206 MB Microsoft Outlook
      172 MB SophosScanD
    Virtual Memory Information: ℹ️
      25.21 GB Free RAM
      4.58 GB Active RAM
      2.62 GB Inactive RAM
      1.94 GB Wired RAM
      3.05 GB Page-ins
      0 B Page-outs
    Diagnostics Information: ℹ️
      Dec 29, 2014, 06:19:18 PM /Library/Logs/DiagnosticReports/???_2014-12-29-181918_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 06:17:58 PM /Library/Logs/DiagnosticReports/???_2014-12-29-181758_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 06:17:19 PM /Library/Logs/DiagnosticReports/???_2014-12-29-181719_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 06:16:38 PM /Library/Logs/DiagnosticReports/???_2014-12-29-181638_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 06:14:38 PM /Library/Logs/DiagnosticReports/???_2014-12-29-181438_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 06:09:52 PM /Library/Logs/DiagnosticReports/Kernel_2014-12-29-180952_[redacted].panic [Details]
      Dec 29, 2014, 06:09:45 PM Self test - passed
      Dec 29, 2014, 08:14:42 AM /Library/Logs/DiagnosticReports/Microsoft Outlook_2014-12-29-081442_[redacted].hang
      Dec 29, 2014, 07:43:00 AM /Library/Logs/DiagnosticReports/???_2014-12-29-074300_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:42:23 AM /Library/Logs/DiagnosticReports/???_2014-12-29-074223_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:41:48 AM /Library/Logs/DiagnosticReports/???_2014-12-29-074148_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:41:11 AM /Library/Logs/DiagnosticReports/???_2014-12-29-074111_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:40:36 AM /Library/Logs/DiagnosticReports/???_2014-12-29-074036_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:39:20 AM /Library/Logs/DiagnosticReports/???_2014-12-29-073920_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:38:45 AM /Library/Logs/DiagnosticReports/???_2014-12-29-073845_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:38:09 AM /Library/Logs/DiagnosticReports/???_2014-12-29-073809_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:37:33 AM /Library/Logs/DiagnosticReports/???_2014-12-29-073733_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:36:58 AM /Library/Logs/DiagnosticReports/???_2014-12-29-073658_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:36:22 AM /Library/Logs/DiagnosticReports/???_2014-12-29-073622_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:35:46 AM /Library/Logs/DiagnosticReports/???_2014-12-29-073546_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:35:10 AM /Library/Logs/DiagnosticReports/???_2014-12-29-073510_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:34:34 AM /Library/Logs/DiagnosticReports/???_2014-12-29-073434_[redacted].cpu_resource.d iag [Details]
      Dec 29, 2014, 07:33:58 AM /Library/Logs/DiagnosticReports/???_2014-12-29-073358_[redacted].cpu_resource.d iag [Details]
      Dec 28, 2014, 08:53:53 PM /Library/Logs/DiagnosticReports/com.apple.iTunesLibraryService_2014-12-28-20535 3_[redacted].cpu_resource.diag [Details]
      Dec 28, 2014, 08:02:27 PM /Users/[redacted]/Library/Logs/DiagnosticReports/Safari_2014-12-28-200227_[reda cted].crash
      Dec 28, 2014, 07:59:33 PM /Users/[redacted]/Library/Logs/DiagnosticReports/Safari_2014-12-28-195933_[reda cted].crash
      Dec 28, 2014, 07:59:24 PM /Users/[redacted]/Library/Logs/DiagnosticReports/Safari_2014-12-28-195924_[reda cted].crash
      Dec 28, 2014, 07:58:10 PM /Users/[redacted]/Library/Logs/DiagnosticReports/Google Chrome_2014-12-28-195810_[redacted].crash
      Dec 28, 2014, 07:57:49 PM /Users/[redacted]/Library/Logs/DiagnosticReports/Google Chrome_2014-12-28-195749_[redacted].crash
      Dec 28, 2014, 07:53:02 PM /Users/[redacted]/Library/Logs/DiagnosticReports/Google Chrome_2014-12-28-195302_[redacted].crash
      Dec 28, 2014, 07:52:38 PM /Users/[redacted]/Library/Logs/DiagnosticReports/Safari_2014-12-28-195238_[reda cted].crash
      Dec 28, 2014, 07:52:23 PM /Users/[redacted]/Library/Logs/DiagnosticReports/Google Chrome_2014-12-28-195223_[redacted].crash
      Dec 28, 2014, 07:52:10 PM /Users/[redacted]/Library/Logs/DiagnosticReports/Google Chrome_2014-12-28-195210_[redacted].crash
      Dec 28, 2014, 05:45:45 PM /Users/[redacted]/Library/Logs/DiagnosticReports/MailTab Pro for Gmail_2014-12-28-174545_[redacted].crash
      Dec 28, 2014, 09:56:22 AM /Library/Logs/DiagnosticReports/InterCheck_2014-12-28-095622_[redacted].crash
      Dec 28, 2014, 08:20:22 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-082022_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:19:45 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-081945_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:19:09 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-081909_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:18:31 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-081831_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:17:55 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-081755_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:17:17 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-081717_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:16:42 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-081642_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:11:46 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-081146_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:11:09 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-081109_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:10:32 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-081032_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:09:55 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-080955_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:09:18 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-080918_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:08:40 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-080840_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:08:04 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-080804_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:07:27 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-080727_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:06:50 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-080650_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:06:14 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-080614_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:05:37 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-080537_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:05:01 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-080501_[redacted].cpu_res ource.diag [Details]
      Dec 28, 2014, 08:01:26 AM /Library/Logs/DiagnosticReports/mdworker32_2014-12-28-080126_[redacted].cpu_res ource.diag [Details]
      Dec 27, 2014, 09:52:10 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-215210_ [redacted].crash
      Dec 27, 2014, 09:52:00 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-215200_ [redacted].crash
      Dec 27, 2014, 09:51:27 PM /Library/Logs/DiagnosticReports/Opera_2014-12-27-215127_[redacted].hang
      Dec 27, 2014, 09:51:27 PM /Library/Logs/DiagnosticReports/Google Chrome_2014-12-27-215127_[redacted].hang
      Dec 27, 2014, 09:51:26 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-215126_ [redacted].crash
      Dec 27, 2014, 09:51:16 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-215116_ [redacted].crash
      Dec 27, 2014, 09:51:06 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-215106_ [redacted].crash
      Dec 27, 2014, 09:50:56 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-215056_ [redacted].crash
      Dec 27, 2014, 09:48:16 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-214816_ [redacted].crash
      Dec 27, 2014, 09:48:05 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-214805_ [redacted].crash
      Dec 27, 2014, 09:47:55 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-214755_ [redacted].crash
      Dec 27, 2014, 09:47:45 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-214745_ [redacted].crash
      Dec 27, 2014, 09:45:33 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-214533_ [redacted].crash
      Dec 27, 2014, 09:45:23 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-214523_ [redacted].crash
      Dec 27, 2014, 09:45:13 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-214513_ [redacted].crash
      Dec 27, 2014, 09:45:02 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-214502_ [redacted].crash
      Dec 27, 2014, 09:44:52 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-214452_ [redacted].crash
      Dec 27, 2014, 09:44:42 PM /Users/[redacted]/Library/Logs/DiagnosticReports/CVMCompiler_2014-12-27-214442_ [redacted].crash
      Dec 27, 2014, 07:30:16 PM /Users/[redacted]/Library/Logs/DiagnosticReports/mdworker_2014-12-27-193016_[re dacted].crash
      Dec 27, 2014, 07:30:15 PM /Library/Logs/DiagnosticReports/mdworker_2014-12-27-193015_[redacted].crash
      Dec 27, 2014, 07:29:05 PM /Library/Logs/DiagnosticReports/Viber_2014-12-27-192905_[redacted].crash
      Dec 27, 2014, 07:29:04 PM /Users/[redacted]/Library/Logs/DiagnosticReports/ReportCrash_2014-12-27-192904_ [redacted].crash
      Dec 27, 2014, 06:32:36 PM /Library/Logs/DiagnosticReports/Microsoft Outlook_2014-12-27-183236_[redacted].cpu_resource.diag [Details]
      Dec 27, 2014, 05:45:37 PM /Library/Logs/DiagnosticReports/Kernel_2014-12-27-174537_[redacted].panic [Details]
      Dec 27, 2014, 04:12:07 PM /Library/Logs/DiagnosticReports/iTunes_2014-12-27-161207_[redacted].crash
      Dec 27, 2014, 04:12:06 PM /Users/[redacted]/Library/Logs/DiagnosticReports/ReportCrash_2014-12-27-161206_ [redacted].crash
      Dec 27, 2014, 11:20:54 AM /Library/Logs/DiagnosticReports/droplet_2014-12-27-112054_[redacted].hang
      Dec 27, 2014, 07:39:54 AM /Library/Logs/DiagnosticReports/Tomb Raider_2014-12-27-073954_[redacted].hang
      Dec 27, 2014, 07:38:49 AM /Users/[redacted]/Library/Logs/DiagnosticReports/Tomb Raider_2014-12-27-073849_[redacted].crash
      Dec 26, 2014, 08:17:03 PM /Users/[redacted]/Library/Logs/DiagnosticReports/Safari_2014-12-26-201703_[reda cted].crash
      Dec 20, 2014, 02:33:48 AM /Library/Logs/DiagnosticReports/Kernel_2014-12-20-023348_[redacted].panic [Details]
    Last Crash Report
    Anonymous UUID:       08B8710D-70AF-18EF-1543-8FCE673E89AD
    Mon Dec 29 18:09:52 2014
    *** Panic Report ***
    panic(cpu 2 caller 0xffffff8003b7a49d): "a freed zone element has been modified in zone vm object hash entries: expected 0xffffff8062a4acf8 but found 0xffffff80625eacf8, bits changed 0xfa0000, at offset 0 of 40 in element 0xffffff80625ead20, cookies 0x3f0011568608351c 0x5352142a4c3301d"@/SourceCache/xnu/xnu-2782.1.97/osfmk/kern/zalloc.c:496
    Backtrace (CPU 2), Frame : Return Address
    0xffffff83c4bcb1c0 : 0xffffff8003b3a811
    0xffffff83c4bcb240 : 0xffffff8003b7a49d
    0xffffff83c4bcb2b0 : 0xffffff8003b79fa1
    0xffffff83c4bcb2f0 : 0xffffff8003b78de7
    0xffffff83c4bcb420 : 0xffffff8003bc19c6
    0xffffff83c4bcb490 : 0xffffff8003bc2e4d
    0xffffff83c4bcb4d0 : 0xffffff8004001df0
    0xffffff83c4bcb6c0 : 0xffffff8003d44a27
    0xffffff83c4bcb750 : 0xffffff8003f35ce2
    0xffffff83c4bcb860 : 0xffffff8003f59608
    0xffffff83c4bcba30 : 0xffffff8003f59a2e
    0xffffff83c4bcba80 : 0xffffff8003d3e6ed
    0xffffff83c4bcbbb0 : 0xffffff8003d52005
    0xffffff83c4bcbc00 : 0xffffff8003d5fcc7
    0xffffff83c4bcbf20 : 0xffffff8003d54f0a
    0xffffff83c4bcbf50 : 0xffffff800404dcb2
    0xffffff83c4bcbfb0 : 0xffffff8003c3ac46
    BSD process name corresponding to current thread: mds
    Mac OS version:
    14B25
    Kernel version:
    Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    Kernel UUID: 89E10306-BC78-3A3B-955C-7C4922577E61
    Kernel slide:     0x0000000003800000
    Kernel text base: 0xffffff8003a00000
    __HIB  text base: 0xffffff8003900000
    System model name: iMac13,2 (Mac-FC02E91DDD3FA6A4)
    System uptime in nanoseconds: 41065023422333
    last loaded kext at 3960164916150: com.apple.filesystems.afpfs 11.0 (addr 0xffffff7f867a3000, size 364544)
    last unloaded kext at 106546892171: com.apple.driver.AirPort.Brcm4331 800.20.24 (addr 0xffffff7f85a9f000, size 2043904)
    loaded kexts:
    com.sophos.kext.sav 9.2.50
    com.sophos.nke.swi 9.2.50
    com.logmein.driver.LogMeInSoundDriver 4.1.46f67
    com.apple.filesystems.afpfs 11.0
    com.apple.nke.asp-tcp 8.0.0
    com.apple.driver.AppleBluetoothMultitouch 85.3
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.3.1f2
    com.apple.driver.ApplePlatformEnabler 2.1.0d1
    com.apple.driver.AGPM 100.14.37
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyDriver 267.0
    com.apple.driver.AppleHDA 267.0
    com.apple.driver.AudioAUUC 1.70
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.GeForce 10.0.0
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleIntelHD4000Graphics 10.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleBacklight 170.4.12
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.1f2
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleMCCSControl 1.2.10
    com.apple.driver.AppleIntelFramebufferCapri 10.0.0
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.iokit.SCSITaskUserClient 3.7.0
    com.apple.driver.AppleUSBODD 3.5.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.5
    com.apple.driver.AppleSDXC 1.6.5
    com.apple.iokit.AppleBCM5701Ethernet 10.1.2b3
    com.apple.driver.AppleUSBHub 705.4.1
    com.apple.driver.AirPort.Brcm4360 901.19.10
    com.apple.driver.AppleAHCIPort 3.0.7
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleUSBXHCI 705.4.14
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.security.SecureRemotePassword 1.0
    com.apple.driver.AppleBluetoothHIDKeyboard 175.5
    com.apple.driver.AppleHIDKeyboard 175.5
    com.apple.driver.IOBluetoothHIDDriver 4.3.1f2
    com.apple.driver.AppleMultitouchDriver 260.30
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 267.0
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.nvidia.driver.NVDAGK100Hal 10.0.0
    com.apple.nvidia.driver.NVDAResman 10.0.0
    com.apple.iokit.IOAudioFamily 200.6
    com.apple.vecLib.kext 1.2.0
    com.apple.iokit.IOSurface 97
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.1f2
    com.apple.iokit.IOBluetoothFamily 4.3.1f2
    com.apple.driver.AppleHDAController 267.0
    com.apple.iokit.IOHDAFamily 267.0
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.iokit.IOAcceleratorFamily2 156.4
    com.apple.AppleGraphicsDeviceControl 3.7.21
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleSMC 3.1.9
    com.apple.driver.IOPlatformPluginFamily 5.8.0d49
    com.apple.driver.AppleThunderboltEDMSink 4.0.2
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.0
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOUSBMassStorageClass 3.7.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.0
    com.apple.driver.CoreStorage 471
    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 700.52
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.7.0
    com.apple.iokit.IOUSBFamily 705.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 389.1
    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.corecrypto 1.0
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    Model: iMac13,2, BootROM IM131.010A.B05, 4 processors, Intel Core i7, 3.4 GHz, 32 GB, SMC 2.11f16
    Graphics: NVIDIA GeForce GTX 680MX, NVIDIA GeForce GTX 680MX, PCIe, 2048 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF4), Broadcom BCM43xx 1.0 (7.15.124.12.10)
    Bluetooth: Version 4.3.1f2 15015, 3 services, 27 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD ST3000DM001, 3 TB
    Serial ATA Device: APPLE SSD SM128E, 121.33 GB
    USB Device: Hub
    USB Device: Apple USB SuperDrive
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: iMac, Apple Inc., 23.4

    Mike,
    I have MS Office for Mac and, lately,  while I'm using Excel some of my spreadsheets at freezing up and crashing.  I just did a report from etresoft, which is below.  Do you see what my issue is?
    EtreCheck version: 2.1.5 (108)
    Report generated December 29, 2014 at 11:36:55 AM CST
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      iMac (21.5-inch, Late 2009) (Verified)
      iMac - model: iMac10,1
      1 3.06 GHz Intel Core 2 Duo CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      empty empty empty empty
      BANK 1/DIMM0
      empty empty empty empty
      BANK 0/DIMM1
      2 GB DDR3 1067 MHz ok
      BANK 1/DIMM1
      2 GB DDR3 1067 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      NVIDIA GeForce 9400 - VRAM: 256 MB
      iMac 1920 x 1080
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 1:19:59
    Disk Information: ℹ️
      Hitachi HDT721050SLA360 disk0 : (500.11 GB)
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) / : 499.25 GB (53.35 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      PIONEER DVD-RW  DVRTS09 
    USB Information: ℹ️
      LaCie d2 THB USB3 3 TB
      EFI (disk1s1) <not mounted> : 210 MB
      LaCie (disk1s2) /Volumes/LaCie : 3.00 TB (1.96 TB free)
      Apple Inc. Built-in iSight
      Apple Internal Memory Card Reader
      EPSON USB2.0 MFP(Hi-Speed)
      The Neat Company Neat ADF Scanner
      Apple, Inc. Keyboard Hub
      Apple, Inc Apple Keyboard
      Apple Computer, Inc. IR Receiver
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
    Firewire Information: ℹ️
      WD My Passport 071D 800mbit - 800mbit max
      disk2s1 (disk2s1) <not mounted> : 32 KB
      Mac Solo Passport (disk2s3) /Volumes/Mac Solo Passport : 1.00 TB (1.56 GB free)
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Incompatible Software/Parallels Service.app
      [not loaded] com.parallels.kext.prl_hid_hook (6.0 11994.637263) [Support]
      [not loaded] com.parallels.kext.prl_hypervisor (6.0 11994.637263) [Support]
      [not loaded] com.parallels.kext.prl_netbridge (6.0 11994.637263) [Support]
      [not loaded] com.parallels.kext.prl_usb_connect (6.0 11994.637263) [Support]
      [not loaded] com.parallels.kext.prl_vnic (6.0 11994.637263) [Support]
      /System/Library/Extensions
      [loaded] com.Cycling74.driver.Soundflower (1.5.1) [Support]
      [not loaded] com.seagate.driver.PowSecDriverCore (5.2.2 - SDK 10.4) [Support]
      /System/Library/Extensions/Seagate Storage Driver.kext/Contents/PlugIns
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.2.2 - SDK 10.4) [Support]
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.2.2 - SDK 10.5) [Support]
      [not loaded] com.seagate.driver.SeagateDriveIcons (5.2.2 - SDK 10.4) [Support]
    Problem System Launch Agents: ℹ️
      [loaded] com.paragon.NTFS.notify.plist [Support]
      [running] com.paragon.NTFS.vendor.plist [Support]
    Launch Agents: ℹ️
      [loaded] com.hp.help.tocgenerator.plist [Support]
      [loaded] com.intego.backupassistant.agent.plist [Support]
      [running] com.seagate.SeagateStorageGauge.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [running] com.intego.BackupAssistant.daemon.plist [Support]
      [loaded] com.microsoft.office.licensing.helper.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.citrixonline.GoToMeeting.G2MUpdate.plist [Support]
    User Login Items: ℹ️
      HP Product Research Application (/Library/Application Support/Hewlett-Packard/Customer Participation/HP Product Research.app)
      HPEventHandler UNKNOWN (missing value)
    Internet Plug-ins: ℹ️
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 [Support]
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      Default Browser: Version: 600 - SDK 10.10
      AdobePDFViewerNPAPI: Version: 10.1.12 [Support]
      AdobePDFViewer: Version: 10.1.12 [Support]
      Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
      QuickTime Plugin: Version: 7.7.3
      SharePointBrowserPlugin: Version: 14.0.0 [Support]
      Silverlight: Version: 5.1.30317.0 - SDK 10.6 [Support]
      iPhotoPhotocast: Version: 7.0
    User internet Plug-ins: ℹ️
      CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Support]
      WebEx: Version: 1.0 [Support]
    3rd Party Preference Panes: ℹ️
      Flash Player  [Support]
      Flip4Mac WMV  [Support]
      FUSE for OS X (OSXFUSE)  [Support]
      Paragon NTFS for Mac ® OS X  [Support]
    Time Machine: ℹ️
      Skip System Files: YES - System files not being backed up
      Mobile backups: OFF
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 499.25 GB Disk used: 445.89 GB
      Destinations:
      Data [Network]
      Total size: 2.00 TB
      Total number of backups: 118
      Oldest backup: 2012-09-02 13:08:25 +0000
      Last backup: 2014-12-29 16:39:35 +0000
      Size of backup disk: Excellent
      Backup size 2.00 TB > (Disk size 499.25 GB X 3)
    Top Processes by CPU: ℹ️
          4% WindowServer
          1% NeatScannersICDriver
          0% fontd
          0% loginwindow
          0% AppleSpell
    Top Processes by Memory: ℹ️
      283 MB com.apple.WebKit.WebContent
      150 MB Finder
      99 MB Safari
      82 MB mds_stores
      77 MB WindowServer
    Virtual Memory Information: ℹ️
      919 MB Free RAM
      1.95 GB Active RAM
      433 MB Inactive RAM
      728 MB Wired RAM
      2.04 GB Page-ins
      123 KB Page-outs
    Diagnostics Information: ℹ️
      Dec 29, 2014, 10:17:38 AM Self test - passed

  • My Windows XP keeps crashing for no apparent reason

    I’m only a 68 year old Windows XP novice
    I down loaded and up graded from Adobe Premiere Elements 3 to Adobe Premiere Elements 8
    My Windows XP keeps crashing for no apparent reason now I was going to save a 8 min video to my 232GB extension HD (147GB free space) when the video got to 100% it came up with a error message disc full then it  crashed and closed the PC down
    My Windows XP system is
    Intel Core 2 Duo E8400 3GHz
    EVGA nForce 680i 122-CK-NF68-RX motherboard
    4GB DDR2 memory
    1 x 250GB system drive
    1 x 1000GB data drive
    Nvidia Quadro FX4500 PCI-E graphics card 512MB GDDR3

    Clive Barry wrote:
    "to my 232GB extension HD (147GB free space) when the video got to 100% it came up with a error message disc full then it  crashed and closed the PC down
    What does this mean?  What is an extension HD?

Maybe you are looking for

  • Need a script to enable in-place hold on Office 365

    Hello, I need a script to enable in-place hold on Office 365 for my users. The options that I have found for this so far is to enable in-place hold for a DL or an individual user. Is there a way to use a CSV instead? This is what I have used before..

  • AJAB : close fiscal year

    Hi All, We tried closing FY. Though the close was carried out successfully, the Line items shows: 0. Can any one tell me what it means?? and is it normal Thanks

  • How to replace photos and music?

    I've created a project and I want to replace one of the photos with a different one and I want to change the music. I don't see any way to do these things other than starting over. Are there any instructions anywhere? Anybody know how? thanks, TTHH

  • EDI ?

    Can someone advice me, How to integrate an EDI partner using XI3.0 . My requirement is to send/receive messages with partner systems by using the American National Standards Institute (ANSI) X-12 and Electronic Data Interchange for Administration, Co

  • Custom Support Program metadata kb numbers differs

    Hello, I am using SCCM 2007 R2. We are in the middle of migrating XP to W7 so our company stepped into the Customer Support Program to receive XP updates.From the MS connect site I can download cab files and the executables. I downloaded the wsusimpo