Open/Save Dialogue appears twice in Download

Hi all,
I am trying to write a text file to the client when the client clicks on some download link.... this is what I am doing.....
ByteArrayOutputStream bout = new ByteArrayOutputStream();
bout.write('A');
response.setContentType("application/text");
response.setHeader("Content-Disposition", "attachment;filename=AuditTrial.txt");
response.setContentLength(bout.size());
ServletOutputStream strp = response.getOutputStream();
bout.writeTo(strp);     
bout.close();
when I run this.... Im getting the Open/Save dialog.....
When I choose "Save".... its working fine.....
and when I choose "Open".... it is prompting me the Open/Save dialog again.... and then it is opening.... so the client is getting the dialog twice when chooses "Open" option...... but there is no problem in the output as such... its working fine... its just that Im getting the Dialog twice when i choose "Open".
Can someone help me out in this regard....
ThanX in Adv,
Kiran,
[email protected]

If you use html form to submit download request, it will give you twice dialog. Use hyperlink to download, there will be only one dialog.

Similar Messages

  • How to make the Open/Save dialogue download the text file instead of JSP

    I am currently coding on a JSP program, which searches the database and writes the resultset into a file on the server, and then allows the client to download this tab delimited text file onto their local machine. But I met a problem, when the default Open or Save dialogue appears, it shows that it's trying to download the running JSP file from my local host instead of the newly-created text file. Despite this, when I click OK to either Open or Save the file, a warning dialogue will appear saying: The explorer cann't download this file, it's unable to find this internet site or something like that. I get no error message from the server but I was always told that Javax.servlet.ServletException: getWriter() was already called. What does this mean?
    I guess maybe this is caused by the mix use of outputStreams in my program. I don't know if there is a way to directly read the resultset from the database and then send it through outputStream to the client. My solution is: first create a file on the server to hold the resultset, and then output this file to the client. I did all these in one JSP program: Create file on the server, search database, and then read file and output the contents to client. Is this correct? I attached my code, please feel free to correct any of my mistake? Thanks!
    //global.class is a class dealing with database connection
    <%@ page language="java" import="java.sql.*,java.util.*,java.math.*,java.io.*,ises.*,frmselection.*" %>
    <jsp:useBean id="global" scope="session" class="ises.Global" />
    />
    <!--start to process data-->
    <%
    //get query statement from the session
    String sQuery = "";
    if (session.getAttribute("sQuery")!=null && !(session.getAttribute("sQuery").toString()).equals(""))
    sQuery = session.getAttribute("sQuery").toString();
    String path = "c:/temp";
    String fileName = "temp.TXT";
    File file= null;
    FileOutputStream fo = null;
    PrintStream ps = null;
    try {
         file = new File(path,fileName);
         if(file.exists()) {
         file.delete();
         file.createNewFile();
         fo = new FileOutputStream(file);
         ps = new PrintStream(fo);
    }catch(IOException exp){
         System.out.println("IO Exception: " +exp.toString() );
    java.sql.ResultSet recResults     = null;
    java.sql.Statement STrecResults = null;
    STrecResults = global.getConnection().createStatement();
    recResults = STrecResults.executeQuery(sQuery);
    ResultSetMetaData meta = recResults.getMetaData();
    int columns = meta.getColumnCount();
    String [] tempColumnName = new String[columns];
    String [] ColumnName =null;
    int DisColumns = 0;
    int unDisCol = 0;
    String sLine = "";
    if(recResults.next()) {     //if_1
    for(int n=0;n<columns;n++) {
    String temp = meta.getColumnName(n+1);
    if(!temp.equals("PROJECTID")&&!temp.equals("BUILDINGID")&&!temp.equals("HAZMATPROFILEID")) {
    sLine = sLine + "'" + temp + "'" + " ";
    tempColumnName[DisColumns] = temp;
    DisColumns ++;
    ColumnName = new String[DisColumns];
    }else {
    unDisCol ++;
    }//end for
    for(int i=0;i<(columns-unDisCol);i++) {
    ColumnName[i] = tempColumnName;
    ps.println(sLine);
    do{
    sLine = "";
    for(int n=0;n<(columns-unDisCol);n++) {
    String tempColName = recResults.getString(ColumnName[n]);
    if(tempColName==null) {
    sLine = sLine + "" + " ";
    } else {
         sLine = sLine + "'"+tempColName+"'" + " ";
    ps.println(sLine);
    }while(recResults.next());
    }     //end if_1
    recResults.close();
    recResults = null;
    STrecResults.close();
    STrecResults = null;
    %>
    <!--end of processing data-->
    <!--start of download.jsp-->
    <%
    //set the content type to text
    response.setContentType ("plain/text");
    //set the header and also the Name by which user will be prompted to save
    response.setHeader ("Content-Disposition", "attachment;filename=temp.TXT");
    //Open an input stream to the file and post the file contents thru the servlet output stream to the client
    InputStream in = new FileInputStream(file);
    ServletOutputStream outs = response.getOutputStream();
    int bit = 256;
    try {
         while ((bit) >= 0) {
         bit = in.read();
    outs.write(bit);
    } catch (IOException ioe) {
    ioe.printStackTrace(System.out);
    outs.flush();
    outs.close();
    in.close();     
    %>
    <!--end of download -->

    Thanks. I believe something wrong with this statement
    in my program:
    You are correct there is something wrong with this statement. Seeing how you are doing this in a jsp, not really what they're made for but thats another topic, the output stream has already been called. When a jsp gets compiled it creates a few implicit objects, one of them being the outputstream out, and it does this by calling the response.getWriter(). getWriter or getOutputStream can only be called once, other wise you will get the exception you are experiencing. This is for both methods as well, seeing how the jsp compiles and calls getWriter means that you cannot call getOutputStream. Calling one makes the other throw the exception if called as well. As far as the filename problem in the browser goes I'm guessing that it's in IE. I've had some problems before when I had to send files to the browser through a servlet and remember having to set an inline attribute of some sort in the content-dis header inorder to get IE to see the real filename. The best way to solve this is to get the orielly file package and use that. It is very easy to use and understand and does all of this for you already. Plus it's free. Cant beat that.
    ServletOutputStream outs =
    response.getOutputStream();
    because I put a lot of printout statement within my
    code, and the program stops to print out exactly
    before the above statement. And then I get the
    following message, which repeats several times:
    ServletExec: caught exception -
    javax.servlet.ServletException: getWriter() was
    already called.

  • Codesigned Projector and BuddyAPI (or other File Open/Save Dialogue)

    I noticed that with the Buddy Xtra, if baGetFilename call is made when an application is Codesigned, it will crash.
    Actually ANY attempt to use any file open/save dialogue attempt in a Codesigned application will not work.
    Has anybody found a work around for this?

    Hi,
    Did you found the solution to this? I'm also trying to do something like you , but I got stuck up in a very primitive stage than you. I'm not getting how I can make that File Download window to appear. Can you help me please.
    Thanks.

  • How to get Open/Save Dialogue box

    Hi,
    I need to get open/save dialogue box while downloading a file (from JSP).
    One way which I am currently using is on click of the button pass control to servlet and in servlet using the following code:
    /**.....Some Code */
    response.setContentType("application/csv");
    response.setHeader("Content-Disposition", "attachment; filename=" + filename);
    /**.....Some Code */But I am wondering is there any way I can do the same without passing the control to Servlet? On clicking the button in JSP, is there is any possibilty to get the Open/Save dialogue box directly.
    Thanks
    Arun

    without passing the control to Servlet?Why?
    In HTTP you can send the response only once.The application where i have this requirement is an old one. In the application, I have there are some screens, whose control never goes to Servlet.
    TO be more precise, 2 pages one HTML and another JSP. And the file to be downloaded is created when JSP is called from HTML page. And there is no interaction with Servlet. The JSP inturn calls a method in Java file (which is not a Servlet) and gets all the details including the file to be downloaded.
    I have used window.open() to download the file(in JSP) in order to have Open/Save dialogue box.
    But the approach is working fine in Windows XP systems but not in Windows2000. In Win00 machines it is directly opening the file in popup without giving the user any option for Open/Save.
    Please let me know your suggestion on this.
    Thanks

  • Open save dialogue box wehn run servlet program

    hi,
    i m having one servlet file(Write_File.java).. in this prog i retrive some data form one table and write into one file(c:\\write.be).. its automatically stored tat file in server machine.. now what my issue is when i run Write_File.java, it sholud have to shows save dialogue box..
    file name : Write_File.java
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    public class Write_File extends HttpServlet
         public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
              PrintWriter out = response.getWriter();
              //boolean header = true;
    FileOutputStream fos = new FileOutputStream("c:\\write.be");
              try
                   Class.forName("com.mysql.jdbc.Driver");
                   Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/cha_db","root","user");
                   Statement stat = con.createStatement();
                   ResultSet rs = stat.executeQuery("Select * from acc_ledger");
                   ResultSetMetaData rs_meta = rs.getMetaData();
                        out.println(rs_meta.getColumnName(1)+"\t"+rs_meta.getColumnName(2));
                        fos.write((rs_meta.getColumnName(1)+"\t\t"+rs_meta.getColumnName(2)+"\r\n").getBytes());
                        fos.write(("--------------\t\t--------------\r\n").getBytes());
                   while(rs.next())
                        fos.write((rs.getString(2)+"\t\t"+rs.getString(3)+"\r\n").getBytes());
                   fos.write(("========\t\t========\r\n").getBytes());               
              catch(Exception e)
                   out.println(e);
              fos.flush();
              fos.close();
    pls solve this problem
    by
    senthilkumar
    thnks in advance
    Edited by: vishruta on Nov 16, 2007 3:02 AM

    without passing the control to Servlet?Why?
    In HTTP you can send the response only once.The application where i have this requirement is an old one. In the application, I have there are some screens, whose control never goes to Servlet.
    TO be more precise, 2 pages one HTML and another JSP. And the file to be downloaded is created when JSP is called from HTML page. And there is no interaction with Servlet. The JSP inturn calls a method in Java file (which is not a Servlet) and gets all the details including the file to be downloaded.
    I have used window.open() to download the file(in JSP) in order to have Open/Save dialogue box.
    But the approach is working fine in Windows XP systems but not in Windows2000. In Win00 machines it is directly opening the file in popup without giving the user any option for Open/Save.
    Please let me know your suggestion on this.
    Thanks

  • Openoffice and kde4 open/save dialogue

    Now that I've got this beautiful KDE4.4 desktop those dreadful gtk open/save dialogues have got to go!
    Followed the wiki but installation of gtk-qt-engine-1.1-2 rendered soffice useless - so no go there.
    There is Firefox of course but I'm hoping that there will be a 64_86 version of firefox-kde-opensuse in AUR soon. Audacity is another offender and I'm sure there are others...
    Oh, if only there were a one-for-all solution to these eye sores

    For the standard openoffice to get the KDE integration you need to have the command
    export OOO_FORCE_DESKTOP=KDE4
    somewhere that's getting sourced - I have it in /etc/profile.d/openoffice.sh since that was mentioned in the install message. When I tried out go-openoffice a while backI think it needed the same thing or else keeps the default gtk-style.
    For gtk-kde4 I had Systemsettings - appearance - gtk syle and it gives me some drop down menus which can be set to "Use current KDE style"
    I have noticed some things look a little more KDE-like than others - for instance gimp barely looks different than it did under standard gtk styles.

  • Open File Dialog appears TWICE when using servlet to download an attachment

    Hi,
    This is KILLING me!!! Please HELP.....
    I am using a servlet to download an xml file, which I build on the fly based on user interaction.
    The open file dialog appears nicely and I hit open. The dialog pops up again immediately and I have to click open again in order to open the file.
    This works fine when file extension is txt and I DONOT have to click twice. Here is the code:
    String xmlString = getXMLString(); //builds xml
    String fileName = "myFile.xml";
    response.setContentType("application/x-download");
    response.setHeader("Content-disposition", "attachment;filename=" +fileName);
    PrintWriter out = response.getWriter();
    out.print(xmlString);
    out.flush();
    I am using IE6.0 sp2

    http://forums.java.sun.com/thread.jspa?threadID=596940&tstart=20

  • Display corruption in open/save dialogue window

    Anyone noticed this one - When opening or saving files in applications, if I drag the sidebar edge in the open/save window to make the column wider or narrower, then scroll any column to the right of the sidebar, the folders/files in that column blur and distort. This happens in most 3rd party apps - eg Word, Quark, Dreamweaver, also iTunes but not in Safari or Extensis Suitcase (which seem to use a slightly different type of dialogue window.
    If I use the sidebar default width (where it 'clicks' to a set width), move the sidebar to it's furthest width possible, or close the sidebar altogether, the problem disappears.
    I've only just noticed this issue, but I may just have never tried to alter the sidebar width in combination with scrolling before now - it may be an OSX10.4.5 issue which I've only updated to recently. The standard finder window behaves normally, it only goes weird when trying to open or save from an app.
    Seems like Quartz is having problems somewhere.
    I've trashed the sidebar preferences, removed and restored the sidebar items/aliases, repaired privileges but no difference.
    I've tested this on a recent Hard drive/system backup and the problem appears there too. I've yet to test it on my old G4 as I can't get access to that today.
    I've got a new G5 with a GeForce 6600 card with 256MB VRam so there shouldn't be a memory problem.
    Any thoughts anyone?
    G5 2.5 Dual Core 2Gb RAM   Mac OS X (10.4.4)  

    Just found out it's a problem with the Wacom Intuos3 tablet pen - the symptom doesn't occur using the apple mouse (or the Intuos mouse either). Have reinstalled the Intuos driver, repaired permissions etc but problem persists. Sounds like an issue for the Wacom techies.

  • Can't tab into file list when using column view in the open/save dialogue boxes

    Hi,
    When in Open/Save Dialog Boxes I can't use tab to select the file/folder list in Column View. Tab will only cycle through Save As, Tags, Search, and the Sidebar. In all the other views (Icon, List, Cover) I can tab into the file list. Is this a bug?
    I know that enabling Full Keyboard Access will make this work, but I'd rather not do that since it increases the number of buttons you must tab through to get to the file list.
    I'm using the latest version of Yosemite on a 2014 Macbook Air. Thanks.

    Hi,
    Did you found the solution to this? I'm also trying to do something like you , but I got stuck up in a very primitive stage than you. I'm not getting how I can make that File Download window to appear. Can you help me please.
    Thanks.

  • After CS4 installation browsers+programs crash if I use open/save dialogue windows

    help me.
    I have the same problem of this guy!!
    I can't upload files in e-mails or download images or use software with that open/save windows as photoshop.
    Crazy!
    marco

    help me.
    I have the same problem of this guy!!
    I can't upload files in e-mails or download images or use software with that open/save windows as photoshop.
    Crazy!
    marco

  • Open/Save Dialogue Behavior

    Can someone help me understand Pages' behavior when opening/saving documents?
    Here's the scenario:
    -From Pages' File menu I select Open. A Finder window opens to the desktop (why the desktop?). Then I navigate to the document I want, edit as needed, and close it.
    -The next time I select Open, I'm expecting the dialog to open to the last location. But it always open to the desktop, requiring me to navigate through the folder hierarchy AGAIN to the document I want.
    The same works in reverse for the Save command. I want to save into the most recently opened directory, but the Save dialog opens to the desktop, forcing me to navigate through the folders AGAIN to get back where I left off.
    Anyone?

    Ron Stephens1 wrote:
    Can someone help me understand Pages' behavior when opening/saving documents?
    Here's the scenario:
    -From Pages' File menu I select Open. A Finder window opens to the desktop (why the desktop?). Then I navigate to the document I want, edit as needed, and close it.
    -The next time I select Open, I'm expecting the dialog to open to the last location. But it always open to the desktop, requiring me to navigate through the folder hierarchy AGAIN to the document I want.
    The same works in reverse for the Save command. I want to save into the most recently opened directory, but the Save dialog opens to the desktop, forcing me to navigate through the folders AGAIN to get back where I left off.
    Anyone?
    I am using Pages '09 v4.2. Mine opens to the same directory as the last file was saved. If you want a different outcome, use the Option key modifier when choosing File > Save. This Save As ... result offers an alternative destination -- one that will be re-opened on the next Pages session.
    If yours behaves differently, I would move the following file to the Trash:
    <login directory>/Library/Preferences/com.apple.iWork.Pages.plist

  • How to skip(do not wnat to get display) save dialogue box for file download

    I am having servlet for downlading a file from server. When I call this servelt I am able to get the file from server but I get a save dialog box which I do not want. I want that this file should be stored at a specific location given by me in a servlet.
    So haoe I can avoid that save dialog box and where I should specify the specific location?
    Thanks in advance
    package com.txcs.sms.server.servlet;
    import java.io.*;
    import java.util.zip.GZIPOutputStream;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class DownloadServlet extends HttpServlet
        public DownloadServlet()
            separator = "/";
            root = ".";
        public void init(ServletConfig servletconfig)
            throws ServletException
            super.init(servletconfig);
            context = servletconfig.getServletContext();
            String s;
            if((s = getInitParameter("dir")) == null)
                s = root;
            separator = System.getProperty("file.separator");
            if(!s.endsWith(separator) && !s.endsWith("/"))
                s = s + separator;
            root = s;
        public void doGet(HttpServletRequest httpservletrequest, HttpServletResponse httpservletresponse)
            throws ServletException, IOException
            doPost(httpservletrequest, httpservletresponse);
        public void doPost(HttpServletRequest httpservletrequest, HttpServletResponse httpservletresponse)
            throws ServletException, IOException
            Object obj = null;
            String s = "";
            s = HttpUtils.getRequestURL(httpservletrequest).toString();
            int i;
            if((i = s.indexOf("?")) > 0)
                s = s.substring(0, i);
            String s1;
            if((s1 = httpservletrequest.getQueryString()) == null)
                s1 = "";
            else
                s1 = decode(s1);
            if(s1.length() == 0)
                httpservletresponse.setContentType("text/html");
                PrintWriter printwriter = httpservletresponse.getWriter();
                printwriter.println("<html>");
                printwriter.println("<br><br><br>Could not get file name ");
                printwriter.println("</html>");
                printwriter.flush();
                printwriter.close();
                return;
            if(s1.indexOf(".." + separator) >= 0 || s1.indexOf("../") >= 0)
                httpservletresponse.setContentType("text/html");
                PrintWriter printwriter1 = httpservletresponse.getWriter();
                printwriter1.println("<html>");
                printwriter1.println("<br><br><br>Could not use this file name by the security restrictions ");
                printwriter1.println("</html>");
                printwriter1.flush();
                printwriter1.close();
                return;
            File file = lookupFile(root + s1);
            if(file == null)
                httpservletresponse.setContentType("text/html");
                PrintWriter printwriter2 = httpservletresponse.getWriter();
                printwriter2.println("<html>");
                printwriter2.println("<br><br><br>Could not read file " + s1);
                printwriter2.println("</html>");
                printwriter2.flush();
                printwriter2.close();
                return;
            if(!file.exists() || !file.canRead())
                httpservletresponse.setContentType("text/html");
                PrintWriter printwriter3 = httpservletresponse.getWriter();
                printwriter3.println("<html><font face=\"Arial\">");
                printwriter3.println("<br><br><br>Could not read file " + s1);
                printwriter3.print("<br>Reasons are: ");
                if(!file.exists())
                    printwriter3.println("file does not exist");
                else
                    printwriter3.println("file is not readable at this moment");
                printwriter3.println("</font></html>");
                printwriter3.flush();
                printwriter3.close();
                return;
            String s2 = httpservletrequest.getHeader("Accept-Encoding");
            boolean flag = false;
            if(s2 != null && s2.indexOf("gzip") >= 0 && "true".equalsIgnoreCase(getInitParameter("gzip")))
                flag = true;
            if(flag)
                httpservletresponse.setHeader("Content-Encoding", "gzip");
                httpservletresponse.setHeader("Content-Disposition", "attachment;filename=\"" + s1 + "\"");
                javax.servlet.ServletOutputStream servletoutputstream = httpservletresponse.getOutputStream();
                GZIPOutputStream gzipoutputstream = new GZIPOutputStream(servletoutputstream);
                dumpFile(root + s1, gzipoutputstream);
                gzipoutputstream.close();
                servletoutputstream.close();
            } else
                httpservletresponse.setContentType("application/octet-stream");
                httpservletresponse.setHeader("Content-Disposition", "attachment;filename=\"" + s1 + "\"");
                javax.servlet.ServletOutputStream servletoutputstream1 = httpservletresponse.getOutputStream();
                dumpFile(root + s1, servletoutputstream1);
                servletoutputstream1.flush();
                servletoutputstream1.close();
        private String getFromQuery(String s, String s1)
            if(s == null)
                return "";
            int i = s.indexOf(s1);
            if(i < 0)
                return "";
            String s2 = s.substring(i + s1.length());
            if((i = s2.indexOf("&")) < 0)
                return s2;
            else
                return s2.substring(0, i);
        private void dumpFile(String s, OutputStream outputstream)
            String s1 = s;
            byte abyte0[] = new byte[4096];
            try
                BufferedInputStream bufferedinputstream = new BufferedInputStream(new FileInputStream(lookupFile(s1)));
                int i;
                while((i = bufferedinputstream.read(abyte0, 0, 4096)) != -1)
                    outputstream.write(abyte0, 0, i);
                bufferedinputstream.close();
            catch(Exception exception) { }
        private String decode(String s)
            StringBuffer stringbuffer = new StringBuffer(0);
            for(int i = 0; i < s.length(); i++)
                char c = s.charAt(i);
                if(c == '+')
                    stringbuffer.append(' ');
                else
                if(c == '%')
                    char c1 = '\0';
                    for(int j = 0; j < 2; j++)
                        c1 *= '\020';
                        c = s.charAt(++i);
                        if(c >= '0' && c <= '9')
                            c1 += c - 48;
                            continue;
                        if((c < 'A' || c > 'F') && (c < 'a' || c > 'f'))
                            break;
                        switch(c)
                        case 65: // 'A'
                        case 97: // 'a'
                            c1 += '\n';
                            break;
                        case 66: // 'B'
                        case 98: // 'b'
                            c1 += '\013';
                            break;
                        case 67: // 'C'
                        case 99: // 'c'
                            c1 += '\f';
                            break;
                        case 68: // 'D'
                        case 100: // 'd'
                            c1 += '\r';
                            break;
                        case 69: // 'E'
                        case 101: // 'e'
                            c1 += '\016';
                            break;
                        case 70: // 'F'
                        case 102: // 'f'
                            c1 += '\017';
                            break;
                    stringbuffer.append(c1);
                } else
                    stringbuffer.append(c);
            return stringbuffer.toString();
        public String getServletInfo()
            return "A DownloadServlet servlet ";
        private File lookupFile(String s)
            File file = new File(s);
            return file.isAbsolute() ? file : new File(context.getRealPath("/"), s);
        private static final String DIR = "dir";
        private static final String GZIP = "gzip";
        private ServletContext context;
        private String separator;
        private String root;
        private static final String VERSION = "ver. 1.6";
        private static final String CPR = "A DownloadServlet servlet ";
    }

    Can't be done, for obvious security reasons.
    Would you want someone downloading something into your windows\system directory when you navigate to their webpage?

  • Do you want to save changes - appears twice in master-detail form.

    Hello.
    Sometimes ago i wanted "Do you want to save changes" message in my own language.
    So i created trigger:
    if :system.form_status IN ('CHANGED') then
         alert_response := show_alert('CHANGES');
         if alert_response = alert_button1 then
              commit_form;
         elsif alert_response = alert_button2 then
              clear_block(no_commit);
         elsif alert_response = alert_button3 then
              raise form_trigger_failure;
         end if;
    end if;
    I call that trigger in many other triggers like enter_query, ...
    Everything worked fine until i created form with master_detail block.
    The problem:
    I have a form with two blocks. One master, one detail.
    If i change something in detail block, go to master block item and press enter_query problem appears.
    First i get the message "Do you ..." in my language. When i press NO or CANCEL i get again the message "Do you ..." in original (english) language?
    Why is that?
    Should i call my trigger somewhere else and not just in enter_query trigger (for this problem) or is checking form_status not enough?
    Thanks.

    When you create relation, 3 procedures are automatically created for you.
    Check_Package_Failure, Clear_All_Master_Details and Query_Master_Details.
    When you execute clear_block(no_commit) on the master block -
    Clear_All_Master_Details will fire.
    If you check Clear_All_Master_Details you will find following code there:
    Go_Block(curblk);
    Check_Package_Failure;
    Clear_Block(ASK_COMMIT); -- This statement causing "Do you want to save changes" to appear

  • Open and Save dialogue boxes are useless

    I have recently moved from Windows to Mac after being told I would never look back and I am already 'looking back' somewhat in terms of the OS. I work with photos and graphics and I'm on the move a lot so went for a Mac Book Pro Retina with SSD and I am not going to lie it is lightning quick and the display is beautiful. But when it comes to saving and opening workflow it does not work how I expected it would.
    It seems such a simple thing but you cannot rename files from within mac open and save dialogue boxes. I'm so used to right clicking on a PC to create a new folder, hit F2 or right click and hit rename to rename to what I want then save the file into that new folder. You can also directly edit the name of the files and folders from within the open save dialogue box. If you right click on a mac you can create a new folder but it defaults to the name 'untitled folder' and you then can't change it's name. It find it unbelievable that you can not do this on a MacOS! So unbelievable that I went into an Apple store and spoke with someone there. When I showed them the problem they weren't even aware of it and pointed out I should just use finder. But that is not convenient if if you want to rename a new folder to then have to come out of the open save relocate in finder and change from there.
    I know there is the new folder button down to the left hand side and you can rename the folder as soon as you create it using that but sometimes you may make a mistake and want to change it. Same with file names.
    Why can't you do this on a Mac? It's crazy. After searching about, I came across the Default Folder X app which appears to fix this issue which isn't really that cheap for something I consider should be 100% native in any OS.
    There are other issues that frustrate me from moving over from Windows to Mac (like the ability to snap windows to screen edges, Better Snap Tool fixed that for me at a much more reasonable price but still would have expected this to be native), which I know I will just have to get used to but this one really surprised me.
    Considering I was promised so much in terms of better efficiency with work flow and ease of use overall there is still a lot that's left to be desired.

    As Axeman1020 noted, the Mac OS is not Windows. Things are not going to be exactly the same. It's no different than if you went from Windows to Linux. So expect a month or so of getting used to a different OS. Once muscle memory gets used to the different keyboard commands, and just where things are in general and how they behave, it'll seem just as easy as Windows.
    To answer some of your statements or questions:
    It seems such a simple thing but you cannot rename files from within mac open and save dialogue boxes.
    Renaming items in the Open or Save dialogue boxes are not what those are for. I know Windows allows it, but why? That's a function for the desktop so you can't accidentally change a file or folder name in a dialogue box that has nothing to do with opening a file or saving one. If opening a file, that's all you're doing. If saving, only the name of the file you're saving can be modified. That's what those dialogue boxes are for - nothing else.
    Yes, you can give a file you're saving any name you like. You can even click on any name shown in the save dialogue box to give it that name if you want. You can also highlight the default name and change it.
    If you right click on a mac you can create a new folder but it defaults to the name 'untitled folder' and you then can't change it's name.
    Of course you can. Either highlight the folder and press Enter, or slowly click on the name twice. Either action will make the name editable.
    When I showed them the problem they weren't even aware of it and pointed out I should just use Finder. But that is not convenient if you want to rename a new folder to then have to come out of the open save relocate in finder and change from there.
    You're crossing over two different things. I believe you mean renaming a folder from the Save dialogue box. When you click the New Folder button, you have the opportunity to give the new folder any name you want before clicking Create.
    If you type the wrong name, then yes, you have to finish the save before you can rename the folder. So either be sure you type the name in correctly before clicking Create, or change the misspelling afterwards. You're not saving any time fixing a typo within the Open dialogue box. It will take the same amount of extra time to do it there as opposed to fixing it on the desktop after you complete the save.
    I know there is the new folder button down to the left hand side and you can rename the folder as soon as you create it using that but sometimes you may make a mistake and want to change it. Same with file names.
    You are again trying to force a Windows feature into an OS that is not Windows. The Mac does some things that I wish Windows could do, and visa versa. However, you can't force any OS to do something it simply isn't designed to do. Expecting it to change by sheer willpower is only going to drive you crazy. You need to let go of what you want the OS to do as opposed to what it will do.
    Considering I was promised so much in terms of better efficiency with work flow and ease of use overall there is still a lot that's left to be desired.
    I find the Mac OS to be incredibly efficient. This from a person who has used Windows for many more years overall than the Mac OS. Yes, it took time to get used to how the Mac OS behaved. But rather than fighting it (which is pointless), I simply took the time to learn how to use it as it's designed.

  • Open / Save Dialog Bug in Lion

    Hi,
    I am currently pretty annoyed by a nasty bug that I experience when using Mac OS X Lion. Whenever I want to load an image / video / document or save in various programs, the program automatically crashes. I have reproduced this bug with iMovie 11, iPhoto 11, openOffice, google chrome (when trying to save images) and Seasky Video Converter. Importing via drag and drop seems to work at least for Seasky, but whenever I want to click on a routine that relies on the open / save dialogue, the program crashes.
    Here are some Crash Reports:
    Google Chrome:
    Process:         Google Chrome [184]
    Path:            /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
    Identifier:      com.google.Chrome
    Version:         14.0.835.35 (835.35)
    Code Type:       X86 (Native)
    Parent Process:  launchd [172]
    Date/Time:       2011-08-14 10:56:37.274 +0200
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Interval Since Last Report:          151889 sec
    Crashes Since Last Report:           14
    Per-App Interval Since Last Report:  56558 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      F69E5D61-EECC-45BD-9100-7EDC6FA04410
    Crashed Thread:  2
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000003abd4d0
    VM Regions Near 0x3abd4d0:
        VM_ALLOCATE            0000000003ab4000-0000000003abd000 [   36K] r--/rwx SM=COW 
    --> VM_ALLOCATE            0000000003abd000-0000000003abe000 [    4K] r--/rwx SM=PRV 
        MALLOC_LARGE           0000000003abe000-0000000003abf000 [    4K] rw-/rwx SM=PRV 
    Application Specific Information:
    objc[184]: garbage collection is OFF
    Thread 0:: CrBrowserMain  Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x91779142 __getdirentries64 + 10
    1   libsystem_c.dylib                       0x91e7b628 _readdir_unlocked$INODE64 + 79
    2   libsystem_c.dylib                       0x91e7b7a5 readdir$INODE64 + 55
    3   com.apple.CoreFoundation                0x999b5222 _CFBundleCopySortedDirectoryContentsAtPath + 1282
    4   com.apple.CoreFoundation                0x999c80f8 _CFSearchBundleDirectory + 88
    5   com.apple.CoreFoundation                0x999c7e54 _CFFindBundleResourcesInRawDir + 2404
    6   com.apple.CoreFoundation                0x999c74c3 _CFFindBundleResourcesInResourcesDir + 867
    7   com.apple.CoreFoundation                0x999c6ffd _CFFindBundleResources + 2221
    8   com.apple.CoreFoundation                0x999d8d64 CFBundleCopyResourceURL + 164
    9   com.apple.CoreFoundation                0x999db979 CFBundleCopyLocalizedString + 409
    10  com.apple.CoreServices.OSServices          0x9080ba69 _CopyLocalizedStringForKey + 86
    11  com.apple.CoreServices.OSServices          0x9084141d NetworkBrowser::getRootNode() + 77
    12  com.apple.CoreServices.OSServices          0x9084f998 NWBrowserGetRootNode + 79
    13  com.apple.DesktopServices               0x93055fb2 TFSVolumeInfo::Initialize(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, bool&) + 2010
    14  com.apple.DesktopServices               0x930575be TFSVolumeInfo::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TCountedPtr<TFSVolumeInfo>&, bool&) + 138
    15  com.apple.DesktopServices               0x92fe162f TFSVolumeInfo::GetVolumeInfoFor(long) + 81
    16  com.apple.DesktopServices               0x93063a32 __NetworkNearbyNode_block_invoke_0 + 43
    17  libdispatch.dylib                       0x90193ae3 dispatch_once_f + 50
    18  libdispatch.dylib                       0x90193aac dispatch_once + 31
    19  com.apple.DesktopServices               0x930639cc TGlobalNodes::NetworkNearbyNode() + 154
    20  com.apple.DesktopServices               0x92feba5b TNode::GetNetworkNode(unsigned long) + 103
    21  com.apple.DesktopServices               0x92fe8eee TNode::GetSpecialNodeWithStatus(unsigned long, OpaqueNodeRequest* const&, unsigned long, TNodePtr&) + 228
    22  com.apple.DesktopServices               0x92fe8cb6 NodeCopySpecialFolder + 341
    23  com.apple.FinderKit                     0x922479d1 TFENodeFactory::FetchSharedNetworkNode() + 87
    24  com.apple.FinderKit                     0x9226ec81 TStartNode::TStartNode(TCustomNodeFactory&) + 171
    25  com.apple.FinderKit                     0x9226ebb1 TStartNode::CreateStartNode(TCustomNodeFactory&) + 37
    26  com.apple.FinderKit                     0x92245fdd TFENodeFactory::TFENodeFactory() + 417
    27  com.apple.FinderKit                     0x92245d30 TFENodeFactory::Initialize() + 30
    28  com.apple.FinderKit                     0x9239186c +[FIFinderViewGutsController initializeCounted] + 77
    29  com.apple.FinderKit                     0x9239b8bc -[FIFinderView _commonFinderViewInit] + 37
    30  com.apple.FinderKit                     0x9239ba58 -[FIFinderView initWithFrame:] + 112
    31  com.apple.AppKit                        0x96754a16 -[NSNavFinderViewFileBrowser initWithFrame:] + 167
    32  com.apple.AppKit                        0x9674b43b _NSNavFileBrowserWithFinderKit + 107
    33  com.apple.AppKit                        0x963e6b17 -[NSSavePanel(NSSavePanelLayout) _makeFileBrowserView] + 86
    34  com.apple.AppKit                        0x963e4dcf -[NSSavePanel(NSSavePanelLayout) _setupFileBrowserView] + 162
    35  com.apple.AppKit                        0x963e71d8 -[NSSavePanel(NSSavePanelLayout) _initContentView] + 1502
    36  com.apple.AppKit                        0x963e3ce1 -[NSSavePanel initWithContentRect:styleMask:backing:defer:] + 367
    37  com.apple.AppKit                        0x963dda68 +[NSSavePanel _crunchyRawUnbonedPanel] + 244
    38  com.apple.AppKit                        0x963dc929 +[NSSavePanel savePanel] + 33
    39  com.google.Chrome.framework             0x0076ce52 ChromeMain + 6973650
    40  com.google.Chrome.framework             0x007b6b78 ChromeMain + 7276024
    41  com.google.Chrome.framework             0x002cf3be ChromeMain + 2133566
    42  com.google.Chrome.framework             0x002cfe22 ChromeMain + 2136226
    43  com.google.Chrome.framework             0x00991eb5 ChromeMain + 9222453
    44  com.google.Chrome.framework             0x00992975 ChromeMain + 9225205
    45  com.google.Chrome.framework             0x009949f2 ChromeMain + 9233522
    46  com.google.Chrome.framework             0x0096635e ChromeMain + 9043422
    47  com.apple.CoreFoundation                0x999a810f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
    48  com.apple.CoreFoundation                0x999a7ac6 __CFRunLoopDoSources0 + 246
    49  com.apple.CoreFoundation                0x999d19d8 __CFRunLoopRun + 1112
    50  com.apple.CoreFoundation                0x999d11ec CFRunLoopRunSpecific + 332
    51  com.apple.CoreFoundation                0x999d1098 CFRunLoopRunInMode + 120
    52  com.apple.HIToolbox                     0x9be8b487 RunCurrentEventLoopInMode + 318
    53  com.apple.HIToolbox                     0x9be92dc3 ReceiveNextEventCommon + 381
    54  com.apple.HIToolbox                     0x9be92c32 BlockUntilNextEventMatchingListInMode + 88
    55  com.apple.AppKit                        0x95e388ec _DPSNextEvent + 678
    56  com.apple.AppKit                        0x95e38159 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    57  com.apple.AppKit                        0x95e344cb -[NSApplication run] + 904
    58  com.google.Chrome.framework             0x009661fb ChromeMain + 9043067
    59  com.google.Chrome.framework             0x00965a14 ChromeMain + 9041044
    60  com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    61  com.google.Chrome.framework             0x00254cc6 ChromeMain + 1632070
    62  com.google.Chrome.framework             0x000c70b9 ChromeMain + 2873
    63  com.google.Chrome                       0x000bff58 main + 24
    64  com.google.Chrome                       0x000bff16 0xbf000 + 3862
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9177a90a kevent + 10
    1   libdispatch.dylib                       0x90191ccc _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x9019071b _dispatch_mgr_thread + 53
    Thread 2 Crashed:
    0   com.google.Chrome.framework             0x00960ce7 ChromeMain + 9021287
    1   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    2   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 3:: NetworkConfigWatcher
    0   libsystem_kernel.dylib                  0x91777c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x917771f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x999c89ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x999d1b14 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x999d11ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x999d1098 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x956c8bdb -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.google.Chrome.framework             0x00965944 ChromeMain + 9040836
    8   com.google.Chrome.framework             0x00965a14 ChromeMain + 9041044
    9   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    10  com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    11  com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    12  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    13  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 4:: CrShutdownDetector
    0   libsystem_kernel.dylib                  0x9177ad4e __read + 10
    1   com.google.Chrome.framework             0x0025565d ChromeMain + 1634525
    2   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    3   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 5:: Chrome_FileThread
    0   libsystem_kernel.dylib                  0x9177a90a kevent + 10
    1   com.google.Chrome.framework             0x009c1f6d ChromeMain + 9419245
    2   com.google.Chrome.framework             0x009c0392 ChromeMain + 9412114
    3   com.google.Chrome.framework             0x00964d85 ChromeMain + 9037829
    4   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    5   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 6:: Chrome_DBThread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 7:: Chrome_ProcessLauncherThread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 8:: Chrome_CacheThread
    0   libsystem_kernel.dylib                  0x9177a90a kevent + 10
    1   com.google.Chrome.framework             0x009c1f6d ChromeMain + 9419245
    2   com.google.Chrome.framework             0x009c0392 ChromeMain + 9412114
    3   com.google.Chrome.framework             0x00964d85 ChromeMain + 9037829
    4   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    5   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 9:: Chrome_IOThread
    0   libsystem_kernel.dylib                  0x9177a90a kevent + 10
    1   com.google.Chrome.framework             0x009c1f6d ChromeMain + 9419245
    2   com.google.Chrome.framework             0x009c0392 ChromeMain + 9412114
    3   com.google.Chrome.framework             0x00964d85 ChromeMain + 9037829
    4   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    5   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 10:: WATCHDOG
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 11:: Chrome_WebKitThread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 12:: SamplerThread
    0   libsystem_kernel.dylib                  0x91777c5e semaphore_wait_trap + 10
    1   com.google.Chrome.framework             0x01153d6d ChromeMain + 17356781
    2   com.google.Chrome.framework             0x012182f9 ChromeMain + 18161017
    3   com.google.Chrome.framework             0x012175d1 ChromeMain + 18157649
    4   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 13:: NetworkConfigWatcher
    0   libsystem_kernel.dylib                  0x91777c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x917771f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x999c89ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x999d1b14 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x999d11ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x999d1098 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x956c8bdb -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.google.Chrome.framework             0x00965944 ChromeMain + 9040836
    8   com.google.Chrome.framework             0x00965a14 ChromeMain + 9041044
    9   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    10  com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    11  com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    12  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    13  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 14:: Chrome_SafeBrowsingThread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 15:: NetworkConfigWatcher
    0   libsystem_kernel.dylib                  0x91777c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x917771f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x999c89ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x999d1b14 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x999d11ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x999d1098 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x956c8bdb -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.google.Chrome.framework             0x00965944 ChromeMain + 9040836
    8   com.google.Chrome.framework             0x00965a14 ChromeMain + 9041044
    9   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    10  com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    11  com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    12  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    13  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x91777c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x917771f6 mach_msg + 70
    2   com.google.Chrome.framework             0x00991451 ChromeMain + 9219793
    3   com.google.Chrome.framework             0x024f4160 ChromeMain + 37936096
    4   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    5   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    6   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 17:: Chrome_HistoryThread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b0e0e ChromeMain + 9349262
    5   com.google.Chrome.framework             0x009978a6 ChromeMain + 9245478
    6   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    7   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    8   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    9   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x016d865d ChromeMain + 23142621
    4   com.google.Chrome.framework             0x01df9bcc ChromeMain + 30619212
    5   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    6   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 19:: Chrome_PasswordStore_Thread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 20:: VideoCaptureManagerThread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 21:: WorkerPool/96803
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 22:: WorkerPool/96527
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 23:: WorkerPool/98311
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 24:: WorkerPool/98819
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 25:: WorkerPool/99075
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 26:: WorkerPool/104979
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 27:: WorkerPool/109059
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 28:: WorkerPool/109315
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 29:: WorkerPool/110339
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 30:: WorkerPool/110851
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 31:: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libsystem_kernel.dylib                  0x91779126 __getattrlist + 10
    1   com.apple.CoreServicesInternal          0x919ba8bd _ZL33corePropertyProviderPrepareValuesPK7__CFURLP11__FileCachePKPK10__CFStringP PKvlSA_PP9__CFError + 521
    2   com.apple.CoreServicesInternal          0x919b6b7e _ZL22prepareValuesForBitmapPK7__CFURLP11__FileCacheP19_FilePropertyBitmapPP9__C FError + 284
    3   com.apple.CoreServicesInternal          0x919b8da5 _FSURLCopyResourcePropertyValuesAndFlags + 960
    4   com.apple.CoreFoundation                0x99a7fa4a _CFURLCopyResourcePropertyValuesAndFlags + 202
    5   com.apple.DesktopServices               0x93072e17 TFSInfo::FetchProperties() + 213
    6   com.apple.DesktopServices               0x92ff0fdb TFSInfo::Initialize(__CFURL const*) + 301
    7   com.apple.DesktopServices               0x92fdf765 TFSInfo::GetVolumeInfo(short, unsigned long, FSVolumeInfo&, TCountedPtr<TFSInfo>*) + 121
    8   com.apple.DesktopServices               0x930559cf TFSVolumeInfo::Initialize(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, bool&) + 503
    9   com.apple.DesktopServices               0x930575be TFSVolumeInfo::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TCountedPtr<TFSVolumeInfo>&, bool&) + 138
    10  com.apple.DesktopServices               0x9302946b TNode::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TNodePtr&) + 147
    11  com.apple.DesktopServices               0x93032260 TNode::SynchronizeVolumes(bool, TCountedPtr<TVolumeSyncThread> const&) + 472
    12  com.apple.DesktopServices               0x9303273b TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 1061
    13  com.apple.DesktopServices               0x93055135 __PostNodeTaskRequest_block_invoke_08 + 87
    14  com.apple.DesktopServices               0x93067589 ExceptionSafeBlock(void ( block_pointer)()) + 55
    15  com.apple.DesktopServices               0x930550d8 __PostNodeTaskRequest_block_invoke_0 + 86
    16  libdispatch.dylib                       0x9018fe85 _dispatch_call_block_and_release + 15
    17  libdispatch.dylib                       0x9019180b _dispatch_queue_drain + 224
    18  libdispatch.dylib                       0x901916b0 _dispatch_queue_invoke + 47
    19  libdispatch.dylib                       0x90190eb8 _dispatch_worker_thread2 + 187
    20  libsystem_c.dylib                       0x91e5bb24 _pthread_wqthread + 346
    21  libsystem_c.dylib                       0x91e5d6fe start_wqthread + 30
    Thread 32:: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libsystem_kernel.dylib                  0x91779126 __getattrlist + 10
    1   com.apple.CoreServices.CarbonCore          0x9a693685 _ZL17getattrlist_retryjmPKcmP8attrlistPvmm + 136
    2   com.apple.CoreServices.CarbonCore          0x9a693ad3 GetVolFSAttributes(FSMount*, unsigned long, char const*, unsigned long, unsigned long, FSAttributeInfo*, unsigned long, unsigned long, FSVolAttributeInfo*, unsigned char*) + 606
    3   com.apple.CoreServices.CarbonCore          0x9a704dce FSMount::_getattrs(unsigned long, char const*, unsigned long, unsigned long, FSAttributeInfo*, unsigned long, unsigned char*) + 294
    4   com.apple.CoreServices.CarbonCore          0x9a67f2da FSMount::getattrs(unsigned long, char const*, unsigned long, unsigned long, FSAttributeInfo*, unsigned long, unsigned char*) + 232
    5   com.apple.CoreServices.CarbonCore          0x9a627fdc PBMakeFSRefUnicodeSync + 300
    6   com.apple.CoreServices.CarbonCore          0x9a627ea7 FSMakeFSRefUnicode + 47
    7   com.apple.LaunchServices                0x99464c97 _LSMakeDotLocalizedFSRef + 73
    8   com.apple.LaunchServices                0x99410db7 _LSCopyLocalizedSystemFolderNameForNode + 117
    9   com.apple.LaunchServices                0x99410a67 _ZL53_LSCopyNodeAttribute_DisplayNameIfDifferentFromFSNameP25LSNodeAttributeSta teCache + 295
    10  com.apple.LaunchServices                0x993fd6ff _LSCopyNodeAttribute + 242
    11  com.apple.LaunchServices                0x993fbe8c _LSCopyItemAttributeForRefInfoWithOptions + 294
    12  com.apple.LaunchServices                0x993fbd5e _LSCopyItemAttributeForRefInfo + 46
    13  com.apple.LaunchServices                0x993fbcc3 _ZL27prepareAttributeValueForKeyPK7__CFURLP11__FileCachePK10__CFStringPPKvPP9__ CFError + 163
    14  com.apple.LaunchServices                0x994108e8 _ZL33prepareDistinctLocalizedNameValuePK7__CFURLP11__FileCachePP9__CFError + 103
    15  com.apple.LaunchServices                0x99410879 _ZL25prepareLocalizedNameValuePK7__CFURLP11__FileCachePP9__CFError + 31
    16  com.apple.LaunchServices                0x993fbb7d _ZL31LSPropertyProviderPrepareValuesPK7__CFURLP11__FileCachePKPK10__CFStringPPK vlSA_PP9__CFError + 46
    17  com.apple.CoreServicesInternal          0x919b6b7e _ZL22prepareValuesForBitmapPK7__CFURLP11__FileCacheP19_FilePropertyBitmapPP9__C FError + 284
    18  com.apple.CoreServicesInternal          0x919c1217 _FSURLCopyResourcePropertyForKey + 181
    19  com.apple.CoreFoundation                0x999f18b1 CFURLCopyResourcePropertyForKey + 129
    20  com.apple.DesktopServices               0x9307317e TFSInfo::FetchProperties() + 1084
    21  com.apple.DesktopServices               0x92ff0fdb TFSInfo::Initialize(__CFURL const*) + 301
    22  com.apple.DesktopServices               0x9307cd20 TFSInfo::ResolveSharedFileListItem(unsigned long, TCountedPtr<TFSInfo>&) const + 132
    23  com.apple.DesktopServices               0x92ffaace TNode::ResolveSharedFileListAliasIfNeeded() + 324
    24  com.apple.DesktopServices               0x92fe65dc TNode::SynchronizeChildren(unsigned long, TNodeEventPtrSet&) + 3390
    25  com.apple.DesktopServices               0x92fe53f4 TNode::HandleSync(unsigned long) + 2176
    26  com.apple.DesktopServices               0x92fe4b47 TNode::HandleSync(TCountedPtr<TNodeTask> const&, TNodePtr const&) + 55
    27  com.apple.DesktopServices               0x930326e8 TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 978
    28  com.apple.DesktopServices               0x93055135 __PostNodeTaskRequest_block_invoke_08 + 87
    29  com.apple.DesktopServices               0x93067589 ExceptionSafeBlock(void ( block_pointer)()) + 55
    30  com.apple.DesktopServices               0x930550d8 __PostNodeTaskRequest_block_invoke_0 + 86
    31  libdispatch.dylib                       0x9018fe85 _dispatch_call_block_and_release + 15
    32  libdispatch.dylib                       0x9019180b _dispatch_queue_drain + 224
    33  libdispatch.dylib                       0x901916b0 _dispatch_queue_invoke + 47
    34  libdispatch.dylib                       0x90190eb8 _dispatch_worker_thread2 + 187
    35  libsystem_c.dylib                       0x91e5bb24 _pthread_wqthread + 346
    36  libsystem_c.dylib                       0x91e5d6fe start_wqthread + 30
    Thread 33:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x91e5df7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreVideo                     0x996262e6 CVDisplayLink::waitUntil(unsigned long long) + 306
    4   com.apple.CoreVideo                     0x99625438 CVDisplayLink::runIOThread() + 706
    5   com.apple.CoreVideo                     0x9962515f _ZL13startIOThreadPv + 160
    6   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 34:: PowerSaveBlocker
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 35:
    0   libsystem_kernel.dylib                  0x9177a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x91e5bccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x91e5d6fe start_wqthread + 30
    Thread 36:
    0   libsystem_kernel.dylib                  0x9177a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x91e5bccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x91e5d6fe start_wqthread + 30
    Thread 37:: Dispatch queue: TSystemNotificationTask
    0   com.apple.Symbolication                 0x92fdb1de +[VMUTask pidIsTranslated:].mibForClassic + 30
    1   com.apple.DesktopServices               0x9302a209 TNode::HandleChange(char*, unsigned long, TCountedPtr<TVolumeSyncThread> const&) + 505
    2   com.apple.DesktopServices               0x92ff12a6 TSystemNotificationTask::HandleFileChanged(__FSEventStream const*, void*, unsigned long, void*, unsigned long const*, unsigned long long const*) + 92
    3   com.apple.CoreServices.CarbonCore          0x9a61354d implementation_callback_rpc + 1876
    4   com.apple.CoreServices.CarbonCore          0x9a612d65 _Xcallback_rpc + 487
    5   com.apple.CoreServices.CarbonCore          0x9a612b73 FSEventsD2F_server + 155
    6   com.apple.CoreServices.CarbonCore          0x9a6553bd receive_and_dispatch_rcv_msg + 217
    7   libdispatch.dylib                       0x90194cc2 _dispatch_source_invoke + 642
    8   libdispatch.dylib                       0x901916be _dispatch_queue_invoke + 61
    9   libdispatch.dylib                       0x901917dc _dispatch_queue_drain + 177
    10  libdispatch.dylib                       0x901916b0 _dispatch_queue_invoke + 47
    11  libdispatch.dylib                       0x90190eb8 _dispatch_worker_thread2 + 187
    12  libsystem_c.dylib                       0x91e5bb24 _pthread_wqthread + 346
    13  libsystem_c.dylib                       0x91e5d6fe start_wqthread + 30
    Thread 2 crashed with X86 Thread State (32-bit):
      eax: 0x03abd4a0  ebx: 0x009608c1  ecx: 0x03abd4a0  edx: 0x03b81b20
      edi: 0x00000d07  esi: 0x00000001  ebp: 0xb0206f98  esp: 0xb0206cb0
       ss: 0x00000023  efl: 0x00010246  eip: 0x00960ce7   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x03abd4d0
    Logical CPU: 1
    Binary Images:
       0xbf000 -    0xbfff7 +com.google.Chrome (14.0.835.35 - 835.35) <65D8E9FF-5695-5D61-2FA6-7B58B4E61123> /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
       0xc4000 -  0x3523f6f +com.google.Chrome.framework (14.0.835.35 - 835.35) <11DFD9DB-0D6D-5A7B-03FB-FE7BC8F18E25> /Applications/Google Chrome.app/Contents/Versions/14.0.835.35/Google Chrome Framework.framework/Google Chrome Framework
    0x390c000 -  0x39b9ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x3ac6000 -  0x3ad1fff +com.google.Keystone.Registration (1.0.9 - 1.0.9.2865) <B824317F-34B3-C47B-A05C-01107B03BC1A> /Applications/Google Chrome.app/Contents/Versions/14.0.835.35/Google Chrome Framework.framework/Frameworks/KeystoneRegistration.framework/KeystoneRegistrat ion
    0x4d2f000 -  0x4e26ffb  libGLProgrammability.dylib (??? - ???) <560A7F12-1AA6-35E1-A922-309016BF6D3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x4e4c000 -  0x4e79ff8  GLRendererFloat (??? - ???) <BBFAA220-4A07-3CDC-9A93-DF6A2220AE01> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x77d1000 -  0x77d6ffe  libgermantok.dylib (??? - ???) <465F8E0F-0AED-3D8A-A852-22549742C6E9> /usr/lib/libgermantok.dylib
    0x77da000 -  0x77dcfff  com.apple.AddressBook.LocalSourceBundle (1.1 - 1043) <49FCCD0A-6436-3C81-8773-06A52EFE3F19> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x77e1000 -  0x77e4ffe  com.apple.DirectoryServicesSource (1.1 - 1043) <043271EB-0EAD-33D8-A1E4-F5F6E3DCCD32> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x8539000 -  0x86a6ff0  GLEngine (??? - ???) <3C6D5F72-9CDA-37E2-B085-7F38C99FE8C5> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x9fed000 -  0x9ff2fe2  libcldcpuengine.dylib (1.50.61 - compatibility 1.0.0) <C9714E84-87B3-3EF4-A598-758522D1DB25> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x9ff9000 -  0x9ffbfff  libCoreFSCache.dylib (??? - ???) <8CC7923C-BD40-3A87-A295-0EAC7760800E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0xa013000 -  0xa013ffb +cl_kernels (??? - ???) <C1930492-FAF5-4F84-BBE8-59B0017326C6> cl_kernels
    0xa

    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode.  Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application unistaller. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About
    General information.
    Isolating issues in Mac OS X
    Troubleshooting Permission Issues
    Step by Step to Fix Your Mac

Maybe you are looking for

  • Run button's method action without input text's validation raise

    Hi My English isn't very good I use jdeveloper 11.1.1.3.0 I have a button and an inputText(with validation) on the page. I defined a method action for the button. when I click the button, the input Text's validation raise and the button's method does

  • Problem viewing video on my netbook

    Installed all the requirements (Flash Player and Plug In 11) - the latest version, but only gets the blank screen when I click on the video or getting a message (this would need 10.1 or higher, please download from the site) when I have installed/dow

  • Need help installing md5sha1sum via MacPorts on MacBook Pro

    While playing Call Of Duty 4 on certain servers, I keep getting kicked for 5 minutes due to: "Ignoring MD5Tools Queries". I did some googling and the only possible solution I have found so far is to install md5sha1sum. I downloaded that and downloade

  • Raid 5 Storage Lost

    I had 4 x 1TB drives in raid 5 and I had 3.2TB total storage on D:. C: contains W7 and CS5. I used about 0.5 TB before the system broke. The repair shop replace the MOBO and setup raid 5 again and I lost all my data. But now I have only 2.7TB total s

  • Menu exit

    Hi All, I am trying menu exit. I have added a menu in abap editor. How to add functionality to the menu entry. I want to call another transaction, how to do that? Regards, Dilip