Char[int i]

Hi,
Please let me know whether declaring a char array of dynamic size is allowed or not.
e.g.,
int i = 25;
"char[ i ] c";
Thanks
Ajay

typo there: "compiler doesn't like you" should read "compiler doesn't like it (your code)";-) /u/jos/java:115>javac -cp . com/company/project/*.java
javac: doesn't like j.a.horsmeier; refused to compile his code at line 1
exit status: 1
/u/jos/java:116>
Shudder, what a nightmare it'd be ;-)
kind regards,
Jos

Similar Messages

  • Characters(char,int,int) problem ???

    Hello, I'm using SAX to parse an XML file, but i run into a problem with the characters() method (well that's what I think). I use it to get the contents of text nodes, but sometimes (actually, only once) it will return only half of the text. But, you will tell me, this should be normal since the parser is allowed to call it twice in a row.
    But I create a StringBuffer myStringBuffer, then in characters(char[] buffer,int offset,int length) i do myStringBuffer.append(buffer,offset,length) and in endElement i try to process myStringBuffer, but still it contains only half of the text. This is all the more strange to me that my XML file is full of text nodes much longer than the troublesome one and i have no problem with those...and when i extract this s***** node and put it into another XML file, it works fine.
    So I'm somehow confused.
    Thanks in advance.

    Your logic certainly looks like it should work, but obviously it doesn't. Here's what I do:
    1. In the startElement() method, create an empty StringBuffer.
    2. In the characters() method, append the characters to it. Incidentally you don't need to create a String like you do, there's an "append(char[] str, int offset, int len)" method in StringBuffer which is very convenient in this case.
    3. In the endElement() method, use the contents of the StringBuffer.
    As for why parsers split text nodes, don't try to second-guess that. It's not your business as a user of the SAX parser. Some parsers will read the XML in blocks, and if a block happens to end in the middle of a text node, it splits the text node there. Others will see the escape "&" in a text node and split the node into three parts, the part before the escape, a single "&" character, and the part after it. Saves on string manipulation, you see. There could be other reasons, too.

  • Char int and println MeSS, help plz any1??

    Hello dear people.
    Well, homework assignment was to write a code which will output the alphabet parallel a-z , A-Z
    using a for-loop
    so.... her's what i wrote:
    public class buha {
         public static void main(String[] args) {
              for (int nm=65; nm==90; nm+=1){ //A=65, Z=90, this is a numerical
                                             //presentation of the alphabet
                   char g=(char)nm;           //g for the capital letters
                            char k=(char)(nm+32);     //k for the small letters, 32 is
                                            //the difference between small and capital
                             System.out.println(g, ' ', k); //this show output capital, few spaces
                                            //and small.
    }Why isn't it working?
    Compiler shows an error with the println
    thanks allot, Amit

    thank you for your posts.
    i fixed the code as Sabre offeres (is the second expression in a for loop functions as a while condition or as an end condition?)
    now it looks like that:
    public class buha {
         public static void main(String[] args) {
              for (int nm=65; nm<=90; nm+=1){ //A=65, Z=90, this is a numerical
                                             //presentation of the alphabet
                   char g=(char)nm;           //g for the capital letters
                            char k=(char)(nm+32);     //k for the small letters, 32 is
                                            //the difference between small and capital
                             System.out.println(g, "  " , k); //this show output capital, few spaces
                                            //and small.
    }and still showing the same problem about the println, namely:
    The method println(char) in the type PrintStream is not applicable for the arguments (char, String, char)
    ideas?

  • Character.digit(char, int) doesn't know the diff of 'a' and 'A'

    I did Character.digit('a', 16) and Character.digit('A', 16), and they both gave me 10. Is there a function that can decipher between capitals and lowercase.
    I am trying to create a random sequence of characters...and I can't seem to figure out a good method to do this. I think the method Character.digit(char, radix) isn't the best of methods.

    No! That is not the right method to use. You should have seen the API before posting your explanation.
    Anyway, you could try this,
    import java.util.Random;
    Random r = new Random();
    char upch = 'A' + r.nextInt(25); // for next random upper case letter
    char lowch = 'a' + r.nextInt(25); // for next random lower case letterI assume that, by characters in your question, you meant English alphabet.
    HTH

  • Free Chars int the Planning Layout

    Hello IP gurus,
    Is it advisable to put too many free characteristics in the planning layout and in the real time cube . My user is requesting too many chars in the layout and I am suggesting to have it in the report/reporting cube and not in the layout/real time cube. All are actual and nothing to do with planning chars/key figures. Can you please advice what is the best design. Thanks in advance for your help guys.
    Senthil

    Hi,
    You can use free characteristic ,if you are going to plan at that granularity.For input ready query used in planning ,characteristics
    part of aggregation level has to be part of row or column.So check at what granularity you are going to plan for data,then decide design.
    Regards,
    Indu

  • Converting int to char

    Hi!..
    I have a problem!...
    I need to convert integers to chars, but i`m using char(int)....
    So, only accept until ascii code 128..
    Please, What can I do?
    This is my code:
    Thanks!
    public Convert() {
    public static void main(String[] args) {
    Convert convert1 = new Convert();
    System.out.print(f_Transforma("ABCD"));
    public static String f_Transforma(String Password)
    int IntStrLong=Password.length();
    String StrResultado=new String();
    while (IntStrLong >=1)
    int tmpchar=(int)Password.charAt(IntStrLong-1); //valor ascii
    tmpchar=256-tmpchar+IntStrLong;
    String aChar = new Character((char)tmpchar).toString(); //ASCII code to String
    StrResultado=StrResultado+aChar;
    IntStrLong-=1;
    return (StrResultado);
    }

    I did what you told me and nothing happened...
    int tmpchar=(int)Password.charAt(IntStrLong-1); //valor ascii
    tmpchar=256-tmpchar+IntStrLong;
    tmpchar=tmpchar>>8;
    String aChar = new Character((char)tmpchar).toString(); //ASCII code to String

  • HOW can I convert int value char TO String

    I am trying to study Java by books, but sometimes it is quite difficult to find answers even to simple questions...
    I am writing a program that analyzes a Chinese text in Unicode. What I get from the text is CHAR int value (in decimals), and now I need to find them in another text file (with RegEx). But I can't find a way how to convert an INT value of a char into a String.
    Could you help me?
    Thank you in advance.

    You are confusing matters a bit. A char is a char is a char, no matter
    how you represent it. Have a look at this:char a= 'A';
    char b= 65;Both a and b have the same value. The representation of that value
    can be 'A' or 65 or even (char)('B'-1), because the decimal representation
    of 'B' is 66. Note the funny construct (char)(...). This construct casts
    the value ... back to the char type. Java performs all non-fraction
    arithmetic using four byte integers. The cast transforms it back to
    a two byte char type.
    Strings are just concatenations of zero or more chars. the charAt(i)
    method returns you the i-th char in a string. Have a look:String s= "AB";
    char a= 'A';
    char b= (char)(a+1);
    if (a == s.charAt(0)) System.out.println("yep");
    if (b == s.charAt(1)) System.out.println("yep");This piece of code prints "yep" two times. If you want to compare two
    Strings instead, you have to do this:String s= "AB";
    char a= 'A';
    char b= 'B';
    String t= ""+a+b;
    if (s.equals(t)) System.out.println("yep");Note the 'equals' method instead of the '==' operator. Also note that
    string t was constructed using those two chars. The above was a
    shorthand of something like this:StringBuffer sb= new StringBuffer("");
    sb.append(a);
    sb.append(b);
    String t= sb.toString();This is all handled by the compiler, for now, you can simply use the '+'
    operator if you want to append a char to a string. Note that it is not
    very efficient, but it'll do for now.
    Does this get your started?
    kind regards,
    Jos

  • Reading .txt file into char array, file not found error. (Basic IO)

    Iv been having some trouble with reading characters from a text file into a char array. I havnt been learning io for very long but i think im getting the hang of it. Reading and writing raw bytes
    and things like that. But i wanted to try using java.io.FileReader to read characters for a change and im having problems with file not found errors. here is the code.
    try
    File theFile = new File("Mr.DocumentReadMe.txt");
    String path = theFile.getCanonicalPath();
    FileReader readMe = new FileReader(path);
    char buffer[] = new char[(int)theFile.length()];
    int readData = 0;
    while(readData != -1)
    readData = readMe.read(buffer);
    jEditorPane1.setText(String.valueOf(buffer));
    catch(Exception e)
    JOptionPane.showMessageDialog(null, e,
    "Error!", JOptionPane.ERROR_MESSAGE);
    The error is: java.io.FileNotFoundException: C:\Users\Kaylan\Documents\NetBeansProjects\Mr.Document\dist\Mr.DocumentReadMe.txt (The system cannot find the file specified)
    The text file is saved in the projects dist folder. I have tried saving it elsewhere and get the same error with a different pathname.
    I can use JFileChooser to get a file and read it into a char array with no problem, why doesnt it work when i specify the path manually in the code?

    Well the file clearly isn't there. Maybe it has a .txt.txt extensionthat Windows is kindly hiding from you - check its Properties.
    But:
    String path = theFile.getCanonicalPath();
    FileReader readMe = new FileReader(path);You don't need all that. Just:
    FileReader readMe = new FileReader(theFile);And:
    char buffer[] = new char[(int)theFile.length()];You don't need a buffer the size of the file, this is bad practice. Use 8192 or whatever.
    while(readData != -1)
    readData = readMe.read(buffer);
    }That doesn't make sense. Read the data into the buffer and repeat until you get EOF? and do nothing with the contents of the buffer? The canonical read loop in Java goes like this:
    while ((count = in.read(buffer)) > 0)
      out.write(buffer, 0, count); // or do something else with buffer[0..count-1].
    jEditorPane1.setText(String.valueOf(buffer));Bzzt. That won't give you the content of 'buffer'. Use new String(buffer, 0, count) at least.

  • Querying CHAR columns with character length semantics unreliable

    Hi again,
    It appears that there is a bug in the JDBC drivers whereby it is highly unlikely that the values of CHAR columns that use character length semantics can be accurately queried using ResultSet.getString(). Instead, the drivers return the value padded with space (0x#20) characters out to a number of bytes equal to the number of characters multiplied by 4. The number of bytes varies depending on the number and size of any non-ascii characters stored in the column.
    For instance, if I have a CHAR(1) column, a value of 'a' will return 'a ' (4 characters/bytes are returned), a value of '\u00E0' will return '\u00E0 ' (3 characters / 4 bytes), and a value of '\uE000' will return '\uE000 ' (2 characters / 4 bytes).
    I'm currently using version 9.2.0.3 of the standalone drivers (ojdbc.jar) with JDK 1.4.1_04 on Redhat Linux 9, connecting to Oracle 9.2.0.2.0 running on Solaris.
    The following sample code can be used to demonstrate the problem (where the DDL at the top of the file must be executed first):
    import java.sql.*;
    import java.util.*;
    This sample generates another bug in the Oracle JDBC drivers where it is not
    possible to query the values of CHAR columns that use character length semantics
    and are NOT full of non-ascii characters. The inclusion of the VARCHAR2 column
    is just a control.
    CREATE TABLE TMP2
    TMP_ID NUMBER(10) NOT NULL PRIMARY KEY,
    TMP_CHAR CHAR(10 CHAR),
    TMP_VCHAR VARCHAR2(10 CHAR)
    public class ClsCharSelection
    private static String createString(char character, int length)
    char characters[] = new char[length];
    Arrays.fill(characters, character);
    return new String(characters);
    } // private static String createString(char, int)
    private static void insertRow(PreparedStatement ps,
    int key, char character)
    throws SQLException
    ps.setInt(1, key);
    ps.setString(2, createString(character, 10));
    ps.setString(3, createString(character, 10));
    ps.executeUpdate();
    } // private static String insertRow(PreparedStatement, int, char)
    private static void analyseResults(PreparedStatement ps, int key)
    throws SQLException
    ps.setInt(1, key);
    ResultSet results = ps.executeQuery();
    results.next();
    String tmpChar = results.getString(1);
    String tmpVChar = results.getString(2);
    System.out.println(key + ", " + tmpChar.length() + ", '" + tmpChar + "'");
    System.out.println(key + ", " + tmpVChar.length() + ", '" + tmpVChar + "'");
    results.close();
    } // private static void analyseResults(PreparedStatement, int)
    public static void main(String argv[])
    throws Exception
    Driver driver = (Driver)Class.forName(
    "oracle.jdbc.driver.OracleDriver").newInstance();
    DriverManager.registerDriver(driver);
    Connection connection = DriverManager.getConnection(
    argv[0], argv[1], argv[2]);
    PreparedStatement ps = null;
    try
    ps = connection.prepareStatement(
    "DELETE FROM tmp2");
    ps.executeUpdate();
    ps.close();
    ps = connection.prepareStatement(
    "INSERT INTO tmp2 ( tmp_id, tmp_char, tmp_vchar " +
    ") VALUES ( ?, ?, ? )");
    insertRow(ps, 1, 'a');
    insertRow(ps, 2, '\u00E0');
    insertRow(ps, 3, '\uE000');
    ps.close();
    ps = connection.prepareStatement(
    "SELECT tmp_char, tmp_vchar FROM tmp2 WHERE tmp_id = ?");
    analyseResults(ps, 1);
    analyseResults(ps, 2);
    analyseResults(ps, 3);
    ps.close();
    connection.commit();
    catch (SQLException e)
    e.printStackTrace();
    connection.close();
    } // public static void main(String[])
    } // public class ClsColumnInsertion

    FYI, this has been mentioned as early as November last year:
    String with length 1 became 4 when nls_lang_semantics=CHAR
    and was also brought up in Feburary:
    JDBC thin driver pads CHAR col to byte size when NLS_LENGTH_SEMANTICS=CHAR

  • How to skip the '\n' char when reading with BufferedReader

    Hello to all the comunity that is at these forums, ;)
    I'm a venezuelan IT student, and as many arround here, I'm looking for some help with this homework...
    well the thing is that I need to read from the System.in untill I get the "" String. Well the initial idea was to make a BufferedReader object and put the br.readLine(); method inside a recursive method, like this:
       import java.io.*;
        public class P1_diccionary {
          String[] diccionario;
          int cont=0;
           void llenarDiccionario(String linea, String[] auxi)throws IOException{
             if(linea.compareTo("")!=0){
                 int aux = cont++;
                 diccionario = new String[cont];
                 for(int i=0;i<auxi.length;i++)
                     diccionario=auxi[i];
    diccionario[aux]=linea;
    BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
    llenarDiccionario(reader.readLine(),diccionario);
    well, I think this one it's a nice idea, however, it doesn't work for me because the input is going to be just like this:
    word1: concept1...
    word2: concept2...
    word3: concept3...
    word4: concept4...
    and! it's going to be pasted on the console (that is "ctrl+c" then "ctrl+v")... that's the real problem that I have, the method that I did reads some lines not all of them, I think it's because there is no synchronization (guessing) between the ctrl+v and the execution of the program...
    so I thought about skiping the '\n' char, to do this I checked the readLine() method of the BufferedReader and found out that it calls a
    readLine(boolean ignoreLF)method and that ignoreLF and skipLF -boolean form the class- determine whether readLine() will skip the '\n' char or not:
    boolean omitLF = ignoreLF || skipLF;ok now the question: how do I make ignoreLF or skipLF = true? I tried to look more in the BufferedReader class but I didn't see how to change the skipLF value...
    well guess that's all, I'll really apriciate all of your help, and any other ideas that you might have to solve the problem...
    well thanks to everybody and see ya ;)

    Use read() instead of readLine(). This method will read characters, and does not treat the EOL charactger the same way. Just keep reading until you find a sequence of characters (two EOL sequences in a row) that matches your end condition. Just be careful, since different OSs have different EOL sequences ... \n, \n\r, or \r. Also, remember that you will have to deal with the EOL sequences. They will not be discarded automatically.
    You can also use read( char[], int, int) to read as many characters as you want, without regard to EOL sequences. This will only stop reading when EOF is reached, or when the next read will cause the underlying stream to block, or when you have read a specified number of characters. Again, this will not terminate at a EOL sequence, and will include the EOL sequences in your array.
    As far as readLine() is concerned, I think you want to stop when you have TWO successive reads that equal "".
    � {�                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • JString to char *

    Hi,
    i have a problem with the conversion of a char* to string i do not get where the mistake is in the code of the native function:
    JNIEXPORT jstring JNICALL Java_Main_get_1name(JNIEnv *env, jobject jobj, jint param)
    char buf = (char*)malloc(max_char);
    //Call the function in fortran
    strcpy(buf, Getname(param +1));
    return (*env)->NewStringUTF(env, buf);
    The errors which comes are:
    e:\Proyecto\wrapper\wrapper.cpp(81): error C2227: el operando izquierdo de '->NewStringUTF' debe se�alar a class/struct/union
    e:\Proyecto\wrapper\wrapper.cpp(81): error C2819: el tipo 'JNIEnv_' no tiene un miembro sobrecargado 'operator ->'
    anyone knows why?

    Yup, muchas gracias
    but i have another problem: i�m passing a fortran dll a char* in order to recalculate its elements, but it is not working. Anyone knows why?
    What i am doing is like follows:
    SUBROUTINE GETNAME(VALUE, ARRAKY)
    !MS$ATTRIBUTES DLLEXPORT,C,ALIAS:'_Getname'::GETNAME
    INCLUDE 'COMMON.LVG'
    INTEGER VALUE
    CHARACTER(*) ARRAKY
    WRITE(*,*) "The INPUT is ", ARRAKY
    WRITE(*,*) "The FORTRAN is ", MOL(VALUE)
    ARRAKY= TRIM(MOL(VALUE))//CHAR(0)
    WRITE(*,*) "The ARRAKI is ", ARRAKY
    END SUBROUTINE GETNAME
    being call in the way:
    extern "C" __declspec(dllexport) char* Getname(char * ,int ,int );
    //string, str_length, element
    JNIEXPORT jstring JNICALL Java_Main_get_1name(JNIEnv *env, jobject jobj, jint param) {
    char buf = (char)malloc(80);
    buf = " ";
    Getname(80, buf, 80);
    printf("%s",buf);
    return env->NewStringUTF(buf);
    but the results are like before:
    The INPUT is h //???
    The FORTRAN is O23H
    The ARRAKI is O //?????
    And as i said after leaving the fortan code, the value is not updated

  • Need official interpretation - java.io.Reader read(char[] cbuf) method

    Hello Everyone,
    I need Sun API's official interpretation on java.io.Reader read(char[] cbuf) method;
    Say, I provide this read method a char[] of size 8096, could the implementing class return even before reading into the whole buffer array? Say, the implementing class just reads 1024 chars and return 1024 as the method output, has the implementing class fulfilled its obligation?
    In my mind, the read method should attempt to read and fill the buffer array until of course i/o error occurs or end of stream is reached? See BufferedReader source for this type of implementation.
    Or could the read method just attempt to read into the buffer (with no obligation) and can return before completely filling the buffer?
    Sincere Regards.

    This is the situation: (and we are caught in between arbitrating on whom to ask to make the fix)
    Please note that I am not taking any names here, but remember these vendors are the biggest in their market.
    Vendor Db A has an API wherein it returns a stream and its length;
    Vendor B consumers this API via the java.io.Reader class as follows:
    char[] data = new char[(int) VendorAStream.length()];
    VendorAStream.read(data);
    Vendor B contends that per java.io.Reader API, it is responsibility of Vendor A to implement the read method correctly!!! (which is to read the data completely, not partially); Vendor B further contends that their code works fine with all the other Db vendors (except Vendor A); [Quite *tupid reasoning in my mind ;-) ]
    Vendor A says per java API, we can partially fill the buffer (they are specifically only reading 1024 chars from the stream)
    Initially, I thought, Vendor B must fix the code to handle partial reads. But no where it is mentioned clearly that Reader.read only attempts to read the chars and can return before filling the buffer.
    Dannyyates,
    (*My interpretation*) The reason it says "*maximum* number of characters to read" is for the situation when end of stream is reached before fully filling the buffer. In that case, the length of buffer and number of actually chars read wont match. This explanation covers for your observation (c)
    BIJ001, No problem in your explanation. I understand and I am merely pointing you to alternate interpretation of the API.
    Please comment. Thanks for your time to discuss this.
    Sincere Regards.

  • Using a variable in a Powershell search and replace string

    Hi
    a couple of days ago I posted a question about doing a search and replace with wildcards
    Search and repalce with Widcards
    I got a swift and very helpful answer but now I need to build on it.
    In a text file I wanted to replace all the text between two defined words.  the script I got was this
    $text = 'Some Server this bit of text varies Language stuff'
    $text -replace '(.*Server) .+? (Language.*)','$1 it will always say this $2'
    It works great but now I want to replace "it will always say this" with a variable and I can't figure out the correct grammar to make this happen.
    Can anyone help??
    Thanks
    Alex

    Here's one way:
    $replace = 'it will aways say this'if ( $text -match '(.*Server) .+? (Language.*)' )
    { "{0} $Replace {1}" -f $matches[1,2] }
    else { $text }
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Photoshop CS5 on Macbook Pro 10.6.8 Crashes

    All of a sudden, since this morning, my Photoshop has been crashing and I cannot figure out why. Could a file I'm using on photoshop be corrupt? Please help! I have reinstalled, deleted preferences, gotten rid of MM fonts. I do not know what to do and need to get my work done!!!
    This is the report that shows up:
    Process:         Adobe Photoshop CS5.1 [2285]
    Path:            /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
    Identifier:      com.adobe.Photoshop
    Version:         12.1 (12.1x20110328.r.145) (12.1)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2011-11-05 00:39:17.471 +0000
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          443085 sec
    Crashes Since Last Report:           133
    Per-App Interval Since Last Report:  5897 sec
    Per-App Crashes Since Last Report:   106
    Anonymous UUID:                      BBBF47D8-9BFE-4CDB-B060-3300F204E376
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000200b80ec0
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.adobe.Photoshop                     0x0000000100674e2b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 3770855
    1   com.adobe.Photoshop                     0x000000010097e77c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6955832
    2   com.adobe.Photoshop                     0x000000010097e861 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6956061
    3   com.adobe.Photoshop                     0x0000000100963ebe AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6847098
    4   com.adobe.Photoshop                     0x000000010097ce59 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6949397
    5   com.adobe.Photoshop                     0x000000010007b0bb 0x100000000 + 503995
    6   com.adobe.Photoshop                     0x0000000100069d9b 0x100000000 + 433563
    7   com.adobe.Photoshop                     0x000000010006607f 0x100000000 + 417919
    8   com.adobe.Photoshop                     0x000000010006aa11 0x100000000 + 436753
    9   com.adobe.Photoshop                     0x0000000100066613 0x100000000 + 419347
    10  com.adobe.Photoshop                     0x0000000100626af0 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 3450540
    11  com.adobe.Photoshop                     0x000000010098c700 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 7013052
    12  com.adobe.Photoshop                     0x0000000100627dea AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 3455398
    13  com.adobe.Photoshop                     0x000000010099088a AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 7029830
    14  com.adobe.Photoshop                     0x0000000100990fba AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 7031670
    15  com.adobe.Photoshop                     0x00000001008ec5b9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6357365
    16  com.adobe.Photoshop                     0x00000001008723f7 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 5857203
    17  com.adobe.Photoshop                     0x000000010087268e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 5857866
    18  com.adobe.Photoshop                     0x00000001008d706c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6269992
    19  com.adobe.Photoshop                     0x00000001009934e8 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 7041188
    20  com.adobe.Photoshop                     0x0000000100066573 0x100000000 + 419187
    21  com.adobe.Photoshop                     0x0000000100066636 0x100000000 + 419382
    22  com.adobe.Photoshop                     0x00000001012e2094 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16800848
    23  com.apple.AppKit                        0x00007fff8658f6de -[NSApplication run] + 474
    24  com.adobe.Photoshop                     0x00000001012e0644 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16794112
    25  com.adobe.Photoshop                     0x00000001012e10a1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16796765
    26  com.adobe.Photoshop                     0x0000000100068286 0x100000000 + 426630
    27  com.adobe.Photoshop                     0x0000000100237199 0x100000000 + 2322841
    28  com.adobe.Photoshop                     0x0000000100237229 0x100000000 + 2322985
    29  com.adobe.Photoshop                     0x0000000100002294 0x100000000 + 8852
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff84174c0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff84176add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff841767b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff841762de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff84175c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff84175aa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff84196a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8419a881 _pthread_cond_wait + 1286
    2   com.adobe.amt.services                  0x0000000107b64247 C_AMTUISwitchSuppressUpdates + 16439
    3   com.adobe.amt.services                  0x0000000107b5d39e C_EULA_SetState + 1742
    4   com.adobe.amt.services                  0x0000000107b642b2 C_AMTUISwitchSuppressUpdates + 16546
    5   libSystem.B.dylib                       0x00007fff84194fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff84194e89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff8415bdce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff872a5186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011bf38b9b ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff872100d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff84194fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff84194e89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff84196a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8419a881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff872ced87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff8723dff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff87237efb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                                0x0000000105983b3a 0x10594a000 + 236346
    7   ...ple.CoreServices.CarbonCore          0x00007fff872100d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff84194fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff84194e89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff84196a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff841968f9 nanosleep + 148
    2   com.adobe.PSAutomate                    0x000000011f52efdb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate                    0x000000011f510f13 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate                    0x000000011f52f0d6 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                       0x00007fff84194fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff84194e89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff84196a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8419a881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x0000000120a87ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl                     0x000000012083fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl                     0x0000000120a87e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl                     0x0000000120a8816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl                     0x0000000120a88299 APXGetHostAPI + 2469145
    7   libSystem.B.dylib                       0x00007fff84194fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff84194e89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff84196a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8419a881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x0000000120a87ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl                     0x000000012083fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl                     0x0000000120a87e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl                     0x0000000120a8816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl                     0x0000000120a88299 APXGetHostAPI + 2469145
    7   libSystem.B.dylib                       0x00007fff84194fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff84194e89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff8415bd7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff8415c3ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff89ea3902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff89ea2d8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices           0x00007fff812335f7 MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices           0x00007fff812351c2 CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib                       0x00007fff84194fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff84194e89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff8415bdda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8419a772 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl                     0x0000000120a87cb9 APXGetHostAPI + 2467641
    3   com.adobe.adobeswfl                     0x0000000120aa406c APXGetHostAPI + 2583276
    4   com.adobe.adobeswfl                     0x0000000120a87e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl                     0x0000000120a8816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl                     0x0000000120a88299 APXGetHostAPI + 2469145
    7   libSystem.B.dylib                       0x00007fff84194fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff84194e89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff8415bdda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8419a772 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl                     0x0000000120a87cb9 APXGetHostAPI + 2467641
    3   com.adobe.adobeswfl                     0x0000000120c224ed APXGetHostAPI + 4149101
    4   com.adobe.adobeswfl                     0x0000000120a87e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl                     0x0000000120a8816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl                     0x0000000120a88299 APXGetHostAPI + 2469145
    7   libSystem.B.dylib                       0x00007fff84194fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff84194e89 thread_start + 13
    Thread 11:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff8419f932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff89ec5468 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff84194fd6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff84194e89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                       0x00007fff8419f956 recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x00000001233ca562 Invoke + 54020
    2   ServiceManager-Launcher.dylib           0x00000001233c96bf Invoke + 50273
    3   ServiceManager-Launcher.dylib           0x00000001233c8706 Invoke + 46248
    4   ServiceManager-Launcher.dylib           0x00000001233c8761 Invoke + 46339
    5   ServiceManager-Launcher.dylib           0x00000001233c87e2 Invoke + 46468
    6   ServiceManager-Launcher.dylib           0x00000001233c2eed Invoke + 23695
    7   ServiceManager-Launcher.dylib           0x00000001233c3086 Invoke + 24104
    8   ServiceManager-Launcher.dylib           0x00000001233c3b0f Invoke + 26801
    9   ServiceManager-Launcher.dylib           0x00000001233c3bfd Invoke + 27039
    10  ServiceManager-Launcher.dylib           0x00000001233c6eff Invoke + 40097
    11  ServiceManager-Launcher.dylib           0x00000001233c71a5 Invoke + 40775
    12  ServiceManager-Launcher.dylib           0x00000001233c7764 Invoke + 42246
    13  ServiceManager-Launcher.dylib           0x00000001233c7951 Invoke + 42739
    14  ServiceManager-Launcher.dylib           0x00000001233b967f Login + 1773
    15  ServiceManager-Launcher.dylib           0x00000001233bad01 Login + 7535
    16  ServiceManager-Launcher.dylib           0x00000001233c7e88 Invoke + 44074
    17  ServiceManager-Launcher.dylib           0x00000001233ca2a1 Invoke + 53315
    18  libSystem.B.dylib                       0x00007fff84194fd6 _pthread_start + 331
    19  libSystem.B.dylib                       0x00007fff84194e89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00007fff84175a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff84175e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84175aa5 start_wqthread + 13
    Thread 14:
    0   libSystem.B.dylib                       0x00007fff8415bdda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8419a772 _pthread_cond_wait + 1015
    2   ...ple.CoreServices.CarbonCore          0x00007fff8723e018 TSWaitOnConditionTimedRelative + 209
    3   ...ple.CoreServices.CarbonCore          0x00007fff8723ddc6 TSWaitOnSemaphoreCommon + 416
    4   ...ple.CoreServices.CarbonCore          0x00007fff8723dac4 AsyncFileThread(void*) + 61
    5   libSystem.B.dylib                       0x00007fff84194fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff84194e89 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000028  rbx: 0x00007fff5fbfd080  rcx: 0x000000012345a5a8  rdx: 0x0000000200b80ec4
      rdi: 0x000000012345a5a0  rsi: 0x0000000000000004  rbp: 0x00007fff5fbfcfd0  rsp: 0x00007fff5fbfcfd0
       r8: 0x0000000000000028   r9: 0x0000000000000005  r10: 0x0000000000000000  r11: 0x0000000200b81000
      r12: 0x000000011c39fa80  r13: 0x0000000000000004  r14: 0x000000011c39fa40  r15: 0x0000000000000000
      rip: 0x0000000100674e2b  rfl: 0x0000000000010297  cr2: 0x0000000200b80ec0
    Binary Images:
           0x100000000 -        0x1026fbfff +com.adobe.Photoshop 12.1 (12.1x20110328.r.145) (12.1) <568CD2C0-8B76-63A9-A42A-B3D943DD7362> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
           0x1032f4000 -        0x10336cfef +com.adobe.adobe_caps adobe_caps 4.0.42.0 (4.0.42.0) <7AAC7875-787B-A4BA-F319-2B4425511ED4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x103378000 -        0x10337ffff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103387000 -        0x103398ff8 +com.adobe.ahclientframework 1.6.0.20 (1.6.0.20) <AD464E16-20D1-A4FC-878D-CF44322F72BC> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x1033a5000 -        0x1033abff7  com.apple.agl 3.0.12 (AGL-3.0.12) <1AB34F57-2E8D-42FB-A484-5CCB928CA456> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x1033b2000 -        0x1035b8fef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x10364b000 -        0x1037f9fef +com.adobe.owl AdobeOwl version 3.0.93 (3.0.93) <74CF40F6-B216-DB73-5C8F-FC5533220CD9> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x10389b000 -        0x103ccbfef +AdobeMPS ??? (???) <E541F5F1-21BB-D779-1475-B1553950E1B9> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103e25000 -        0x104150ff7 +AdobeAGM ??? (???) <8FE8A26F-F2C4-128B-ECF9-197279A31D70> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x10421d000 -        0x104545fe7 +AdobeCoolType ??? (???) <D55BD5E5-B430-7701-A11E-0FF989536E57> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1045dd000 -        0x1045feff7 +AdobeBIBUtils ??? (???) <B37FD8D7-142F-EE1E-4C63-93C1C59B4318> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10460b000 -        0x104636ff6 +AdobeAXE8SharedExpat ??? (???) <C59B0A11-E89B-F50C-916C-D09F40C1BAA3> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedEx pat
           0x104648000 -        0x10478cfef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1047d3000 -        0x104838fff +aif_core ??? (???) <0E7876E5-6465-676D-06DE-D8F44E3663EB> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x104854000 -        0x10486afff +data_flow ??? (???) <A0C1FB2F-4EB4-7F3E-98E7-82BE18D631B6> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x104882000 -        0x104918fff +image_flow ??? (???) <70C5AE43-18D4-7E41-0BB1-FE9EF1792E6C> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x10498f000 -        0x1049adfff +image_runtime ??? (???) <140A4ED7-DAAA-2E4F-D211-7E2A491CFD5C> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x1049ca000 -        0x104bf9fff +aif_ogl ??? (???) <4E5A4532-CED3-1A19-C852-1C5560F4017A> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104cd8000 -        0x104d6bfff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d8b000 -        0x1050d4fef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x105264000 -        0x1053e6fe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x105488000 -        0x105800fff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x10594a000 -        0x105a5ffff +AdobeACE ??? (???) <C544307E-C1E6-FCA8-4D32-2EC0D5820BBD> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a84000 -        0x105aa0fff +AdobeBIB ??? (???) <C0E29690-D406-8834-CA1D-0A4252A0946E> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105aaa000 -        0x105b1cff7 +com.adobe.amtlib amtlib 4.0.0.21 (4.0.0.21) <E604CBB8-A3F0-69D1-510B-3D8156D37D29> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x105b33000 -        0x105c06ffb +AdobeJP2K ??? (???) <BF2DBEA4-E71A-7112-53CA-8E7D73B1EFE5> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105c26000 -        0x105c2aff8 +com.adobe.ape.shim adbeape version 3.1.74.12761 (3.1.74.12761) <09559AEB-61DE-8DE8-4315-BFA0A7D6394B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x105c2f000 -        0x105ca6fff +com.adobe.FileInfo.framework Adobe XMP FileInfo 5.0 -i 33 (debug) (64.140949) <ED51DA76-662A-8156-3D42-2146684A60B6> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105cc7000 -        0x105d25ffd +com.adobe.AdobeXMPCore Adobe XMP Core 5.0 -c 61 (64.140949) <D02D367B-FF1E-AD63-993C-5CD907CCFCCE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105d33000 -        0x1061cefff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/Cg.framework/Cg
           0x106754000 -        0x1067aafeb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x1067ef000 -        0x106814ffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x10684e000 -        0x106853ffd +com.adobe.AdobeCrashReporter 3.0 (5.5.20101001) <5625AF72-323C-27C5-0094-213D09698D11> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x106857000 -        0x1069f4fff +com.adobe.PlugPlug 2.5.0.232 (2.5.0.232) <09F6FBA4-E768-BDFB-35AE-C7EB8EBA2D1A> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106aa2000 -        0x106b88fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <26FC56A6-EFD6-22FA-E1F1-4E1BA61C85BB> /usr/lib/libcrypto.0.9.7.dylib
           0x106be0000 -        0x106bf9feb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/libtbb.dylib
           0x106c0a000 -        0x106c10feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106c17000 -        0x106c17ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x106c1a000 -        0x106c22ff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106ced000 -        0x106ceffef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x107b40000 -        0x107bb4ff3 +com.adobe.amt.services AMTServices 4.0.0.21 (BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00) (4.0.0.21) <1B6C37A0-570C-14D0-52A3-87C835F530BB> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
           0x107cf2000 -        0x107cf3fff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <0739FD38-CF46-0ECC-517C-E187C5A3B8D6> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x107fce000 -        0x107fe5fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <5C25B45F-7A9E-3259-0532-E13B34B5398A> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x107fe9000 -        0x107ff8fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <50541300-118F-BE28-86DB-0F42738A9338> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x119a88000 -        0x119aa9fef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <1CC25A05-9E4C-ACBE-546E-34063A4CEB09> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x119aad000 -        0x119abffff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <CC30A563-5E4C-7ACE-3B73-90E8F582171A> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x119ac3000 -        0x119acbfff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
           0x11b5ec000 -        0x11b77ffe7  GLEngine ??? (???) <53A8A7E8-4846-D236-F3D9-DA3F2AF686D8> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11b7b0000 -        0x11bbd3fef  libclh.dylib 3.1.1 C  (3.1.1) <432F5475-F934-92A0-FB49-78F03DA82176> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x11bcad000 -        0x11bcd3fff  GLRendererFloat ??? (???) <490221DD-53D9-178E-3F31-3A4974D34DCD> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
           0x11bcdb000 -        0x11bce2fff +Enable Async IO ??? (???) <9AE049A5-F53E-657B-D0AE-01C42D817A19> /Applications/Adobe Photoshop CS5.1/Plug-Ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x11be00000 -        0x11be09fff +FastCore ??? (???) <1565E455-4A86-A3BD-113F-CD828F2C5150> /Applications/Adobe Photoshop CS5.1/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11be18000 -        0x11be7bff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5.1/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11bf03000 -        0x11bf6eff0 +MultiProcessor Support ??? (???) <4FEA98F6-A072-F0BF-0E30-BEFDBD623611> /Applications/Adobe Photoshop CS5.1/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x11d8f5000 -        0x11d8f9fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
           0x11f3ad000 -        0x11f609fef +com.adobe.PSAutomate 12.1 (12.1) <951D5D57-776F-5A95-24A0-D70623A9902F> /Applications/Adobe Photoshop CS5.1/Plug-Ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x11f827000 -        0x11f8cbffb +com.adobe.AdobeExtendScript ExtendScript 4.1.28 (4.1.28.12764) <C53B3FBF-7530-1DAF-66E7-C2E50F25A6DE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x11f930000 -        0x11f9d0fef +com.adobe.AdobeScCore ScCore 4.1.28 (4.1.28.12764) <2A61AEB9-8E9D-8136-9B6F-B4394D6AB7AE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x11fa19000 -        0x11fa39ff7 +com.adobe.ape adbeapecore version 3.1.74.12761 (3.1.74.12761) <48D74CFC-E9C7-143A-F971-2C7F0ACF7602> /Library/Application Support/Adobe/APE/3.101/adbeapecore.framework/adbeapecore
           0x11fa79000 -        0x11fa7fff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <C35BDA60-35FC-4BE7-B378-DCC73D99E2C9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
           0x11fa8f000 -        0x11fa90fff  ATSHI.dylib ??? (???) <F6C4F446-7AC4-7A17-9302-C38A016322B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
           0x11fa9c000 -        0x11fab8ff7 +MeasurementCore ??? (???) <1BE124EE-A88B-8F47-B9E1-1E276FA54327> /Applications/Adobe Photoshop CS5.1/Plug-Ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
           0x11fcc4000 -        0x11fcedfef  com.apple.mio.DAL.VDC_4 140.0 (1496) <E22DEEC2-EE3D-03AD-9E02-BDE03CE73588> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.plugin/Cont ents/MacOS/VDC
           0x11ff06000 -        0x11ff44ff7  com.apple.DP.ScreenInputDevice 13.0 (13.0) <22174597-D163-7A20-C82A-C00C2CA19640> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/AppleScreenInpu tDevice.plugin/Contents/MacOS/AppleScreenInputDevice
           0x120800000 -        0x12166aff3 +com.adobe.adobeswfl ??? (2.0.0.11360) <39C5D47B-EB0F-9FE5-ABA7-7D925DB9C036> /Library/Application Support/Adobe/APE/3.101/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/A dobeSWFL
           0x1233b7000 -        0x1233dffef +ServiceManager-Launcher.dylib 236.0.0 (compatibility 2.5.0) <DBEE8529-7074-635B-2CAD-DF7BA597D909> /Library/Application Support/Adobe/CS5.5ServiceManager/lib/ServiceManager-Launcher.dylib
           0x123500000 -        0x12353dfeb +com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 2.0.0.15 (2.0.0.15) <188E3565-26D6-6A54-01E2-1BBBF73AE24E> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotificati ons
           0x1239d9000 -        0x1239e1fff  com.apple.qldisplay.NSImage 2.3 (327.6) <A1FD7F57-00A6-3150-A7FF-E286A66EA2E3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/Resources/DisplayBundles/NSImage.qldisplay/Contents/MacOS/NSImage
           0x148d23000 -        0x148ea5ff7 +Photoshop3DEngine ??? (???) <DDB38498-B208-FE49-06B8-E17625415ABB> /Applications/Adobe Photoshop CS5.1/Plug-Ins/3D Engines/Photoshop3DEngine.plugin/Contents/MacOS/Photoshop3DEngine
           0x200000000 -        0x200787fe7  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <4F23289A-D45A-0630-8D7F-4C35A4D2AA00> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80024000 -     0x7fff8012eff7  com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.frame work/Versions/A/MeshKitIO
        0x7fff8012f000 -     0x7fff80131fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff80960000 -     0x7fff80b1eff7  com.apple.ImageIO.framework 3.0.4 (3.0.4) <0A4F51A1-4502-767B-8A4E-F14C6214EF88> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
        0x7fff80bd5000 -     0x7fff80c37fe7  com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff80c99000 -     0x7fff80e09fff  com.apple.QTKit 7.7 (1787) <AD4C0243-16DA-F7EE-7202-E9EE7198223F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff80e0a000 -     0x7fff80e2dfff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff80e2e000 -     0x7fff810b0fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff810b1000 -     0x7fff810fafef  libGLU.dylib ??? (???) <1C050088-4AB2-2BC2-62E6-C969F925A945> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff810fb000 -     0x7fff810fcfff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff810fd000 -     0x7fff811b3ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff811f3000 -     0x7fff8120afff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff8120b000 -     0x7fff81224fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff81225000 -     0x7fff8126afff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOSer vices
        0x7fff8126b000 -     0x7fff812b2fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff812fd000 -     0x7fff813e2fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff81b78000 -     0x7fff81b7dff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff81b7e000 -     0x7fff81b9bff7  libPng.dylib ??? (???) <6D8E515B-E0A2-2BA1-9CAC-8CB8A8B35879> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
        0x7fff81b9c000 -     0x7fff81bbcff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
        0x7fff81bd1000 -     0x7fff81bd5ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff81c13000 -     0x7fff81cd0fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff81cd1000 -     0x7fff81d0bfff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
        0x7fff81fb4000 -     0x7fff81ffcff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff81ffd000 -     0x7fff8205dfe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff82137000 -     0x7fff82137ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff82138000 -     0x7fff8226dfff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <E5D7DBDB-6DDF-E6F9-C71C-86F4520EE5A3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8226e000 -     0x7fff82283ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff82284000 -     0x7fff82284ff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff822a1000 -     0x7fff8250afff  com.apple.QuartzComposer 4.2 ({156.30}) <C05B97F7-F543-C329-873D-097177226D79> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
        0x7fff8250b000 -     0x7fff82c07ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff82c69000 -     0x7fff8316fff7  com.apple.VideoToolbox 0.484.60 (484.60) <F55EF548-56E4-A6DF-F3C9-6BA4CFF5D629> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff83170000 -     0x7fff831f5ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff831f6000 -     0x7fff83480fff  com.apple.JavaScriptCore 6534.51 (6534.51.21) <848CAF7C-CDC4-A280-378C-24A701BA6F1A> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff83481000 -     0x7fff83490fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff83491000 -     0x7fff834ceff7  libFontRegistry.dylib ??? (???) <4C3293E2-851B-55CE-3BE3-29C425DD5DFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff83587000 -     0x7fff835d6ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
        0x7fff835d7000 -     0x7fff83648ff7  com.apple.AppleVAFramework 4.10.27 (4.10.27) <6CDBA3F5-6C7C-A069-4716-2B6C3AD5001F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8374e000 -     0x7fff83791ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff837b5000 -     0x7fff837f6fef  com.apple.CoreMedia 0.484.60 (484.60) <6B73A514-C4D5-8DC7-982C-4E4F0231ED77> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff837f7000 -     0x7fff8380dfe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff8381a000 -     0x7fff83821fff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff83822000 -     0x7fff8388cfe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff83958000 -     0x7fff839adff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff839ae000 -     0x7fff83ac5fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff83d66000 -     0x7fff83da1fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff83da2000 -     0x7fff83fdcfef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
        0x7fff84115000 -     0x7fff8413aff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8414d000 -     0x7fff8415afe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8415b000 -     0x7fff8431cfef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff8431d000 -     0x7fff84344ff7  libJPEG.dylib ??? (???) <46A413EA-4FD1-A050-2EF0-6279F3EAD581> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
        0x7fff84345000 -     0x7fff843c7fff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
        0x7fff843c8000 -     0x7fff843c9fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
        0x7fff8447f000 -     0x7fff848c6fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff84920000 -     0x7fff84950fef  com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff84951000 -     0x7fff8495cff7  com.apple.HelpData 2.0.5 (34.1.1) <24DC6CD3-02B7-9332-FF6D-F0C545857B55> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff84964000 -     0x7fff8496afff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff84973000 -     0x7fff84978fff  libGIF.dylib ??? (???) <201B8077-B5CC-11AA-E1B0-1D057ABE416A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
        0x7fff84981000 -     0x7fff849b0ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
        0x7fff849b1000 -     0x7fff84c39fef  com.apple.security 6.1.2 (55002) <015C9A08-3D07-9462-8E91-DB1924349621> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff84c3a000 -     0x7fff84c65ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff84c66000 -     0x7fff84c99ff7  libTrueTypeScaler.dylib ??? (???) <69D4A213-45D2-196D-7FF8-B52A31DFD329> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff84c9a000 -     0x7fff84d18ff7  com.apple.CoreText 151.10 (???) <54961997-55D8-DC0F-2634-674E452D5A8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
        0x7fff84d19000 -     0x7fff84d52ff7  com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff84d53000 -     0x7fff85051fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff85052000 -     0x7fff8505cfff  com.apple.DisplayServicesFW 2.3.3 (289) <97F62F36-964A-3E17-2A26-A0EEF63F4BDE> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
        0x7fff8505d000 -     0x7fff8510dfff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8510e000 -     0x7fff85228fef  libGLProgrammability.dylib ??? (???) <8A4B86E3-0FA7-8684-2EF2-C5F8079428DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
        0x7fff85229000 -     0x7fff8525afff  libGLImage.dylib ??? (???) <7F102A07-E4FB-9F52-B2F6-4E2D2383CA13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff8525b000 -     0x7fff85383ff7  com.apple.MediaToolbox 0.484.60 (484.60) <F921A5E6-E260-03B4-1458-E5814FA1924D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff85384000 -     0x7fff85398ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff8547c000 -     0x7fff854a4fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff854a5000 -     0x7fff854a6ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <53299948-2554-0F8F-7501-04B34E49F6CF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff854b3000 -     0x7fff854faff7  com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff854fb000 -     0x7fff8550cff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff8555c000 -     0x7fff855dbfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff857d2000 -     0x7fff85815fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff85816000 -     0x7fff85816ff7  com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff85820000 -     0x7fff85826ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff85827000 -     0x7fff85836fef  com.apple.opengl 1.6.13 (1.6.13) <516098B3-4517-8A55-64BB-195CDAA5334D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff859d9000 -     0x7fff859dbfff  libRadiance.dylib ??? (???) <A9DB4D5D-4072-971B-DEF6-DDE645F415EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
        0x7fff859de000 -     0x7fff85a97fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff85aa4000 -     0x7fff85aa4ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff85c74000 -     0x7fff85d3ffff  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <E72880D9-3B5D-D086-9266-F4F3C294619F> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff85d4e000 -     0x7fff85e03fe7  com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff85fa2000 -     0x7fff85fadff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff85fae000 -     0x7fff85fb2ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff85fb3000 -     0x7fff86074fff  libFontParser.dylib ??? (???) <A00BB0A7-E46C-1D07-1391-194745566C7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff86075000 -     0x7fff860c1fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff860c2000 -     0x7fff860d4fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff860d5000 -     0x7fff86128ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff864b1000 -     0x7fff86585fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
        0x7fff86586000 -     0x7fff86f80ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Vers

    I too have been having this problem on my Mac Pro Tower.  I've dealt with any mm fonts, but the problem persists.  It seems to happen only when I start CS5 after the tower has been running for a couple of hours or more.  I must restart the computer to use Photoshop.  Any help would be appreciated.  It's a pretty frustrating situation.
    Here is the report, which I've also sent many, many times to adobe:
    Process:         Adobe Photoshop CS5 [2550]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0.4 (12.0.4x20110407.r.1265) (12.0.4)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [169]
    Date/Time:       2011-11-07 13:48:40.002 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          51677 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  33958 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      7A6ACE62-7A67-440B-8DC4-7938110852C8
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000068
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff83a8bdd9 flockfile + 27
    1   libSystem.B.dylib                       0x00007fff83a8beb5 fread + 79
    2   com.adobe.amtlib                        0x0000000105acc9a2 AMTPlugPlugRequestParser::PrepareResponse(void*) + 2908
    3   com.adobe.amtlib                        0x0000000105ac2a20 AMTImpl::AMTPlugPlugRequest(char*, int) + 252
    4   com.adobe.amtlib                        0x0000000105ab377d AMTPlugPlugRequest + 81
    5   com.adobe.PlugPlug                      0x00000001068aadec int boost::_bi::bind_t<int, int (*)(char*, int), boost::_bi::list2<boost::arg<1> (*)(), boost::arg<2> (*)()> >::operator()<char*, int>(char*&, int&) + 40
    6   com.adobe.PlugPlug                      0x00000001068aae0a boost::detail::function::function_obj_invoker2<boost::_bi::bind_t<int, int (*)(char*, int), boost::_bi::list2<boost::arg<1> (*)(), boost::arg<2> (*)()> >, int, char*, int>::invoke(boost::detail::function::function_buffer&, char*, int) + 28
    7   com.adobe.PlugPlug                      0x00000001068ae91c boost::function2<int, char*, int>::operator()(char*, int) const + 104
    8   com.adobe.PlugPlug                      0x00000001068ae943 csxs::services::host::ApplicationCallbacks::AMTRequest(char*, int) + 21
    9   com.adobe.PlugPlug                      0x00000001068ae570 csxs::services::host::ApplicationCallbacksLogger::AMTRequest(char*, int) + 70
    10  com.adobe.PlugPlug                      0x00000001068a428b csxs::services::amt::AMTRequest::Execute() + 125
    11  com.adobe.PlugPlug                      0x00000001068a4bed csxs::services::amt::AMTLibrarySupport::GetProductLicenseInfo() + 113
    12  com.adobe.PlugPlug                      0x000000010689ce5b csxs::ch::ConnectionsHomeSupport::IsOnlineAccessAllowed() const + 79
    13  com.adobe.PlugPlug                      0x000000010689e087 csxs::ch::ConnectionsHomeSupport::CallChangeConnectionsHomeIconCallback() + 57
    14  com.adobe.PlugPlug                      0x0000000106899873 csxs::event::EventManager::DispatchEventToListeners(csxs::event::Event const*, std::vector<csxs::event::EventListener, std::allocator<csxs::event::EventListener> > const&) const + 51
    15  com.adobe.PlugPlug                      0x000000010689b430 csxs::event::EventManager::DispatchEventLocally(csxs::event::Event const*) + 100
    16  com.adobe.PlugPlug                      0x000000010689b493 csxs::event::EventManager::DispatchEventTask::Execute() + 47
    17  com.adobe.PlugPlug                      0x000000010688d483 csxs::internal::AsyncEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 165
    18  com.apple.HIToolbox                     0x00007fff87c7f7f7 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1002
    19  com.apple.HIToolbox                     0x00007fff87c7ed46 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 395
    20  com.apple.HIToolbox                     0x00007fff87c7ebb7 SendEventToEventTargetWithOptions + 51
    21  com.apple.HIToolbox                     0x00007fff87cac002 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1900
    22  com.apple.HIToolbox                     0x00007fff87c7fbf1 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2020
    23  com.apple.HIToolbox                     0x00007fff87c7ed46 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 395
    24  com.apple.HIToolbox                     0x00007fff87c9ca81 SendEventToEventTarget + 45
    25  com.apple.AppKit                        0x00007fff83ee63c7 _DPSNextEvent + 2009
    26  com.apple.AppKit                        0x00007fff83ee5801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    27  com.apple.AppKit                        0x00007fff83eab68f -[NSApplication run] + 395
    28  com.adobe.Photoshop                     0x00000001012e04a4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16793608
    29  com.adobe.Photoshop                     0x00000001012e0f01 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16796261
    30  com.adobe.Photoshop                     0x00000001000682e6 0x100000000 + 426726
    31  com.adobe.Photoshop                     0x00000001002371f1 0x100000000 + 2322929
    32  com.adobe.Photoshop                     0x0000000100237281 0x100000000 + 2323073
    33  com.adobe.Photoshop                     0x00000001000022f4 0x100000000 + 8948
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff83a53c0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff83a55add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff83a557b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff83a552de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff83a54c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff83a54aa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff83a54a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff83a54e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff83a54aa5 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   com.adobe.amt.services                  0x0000000108723c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services                  0x000000010871ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services                  0x0000000108723cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff83a54a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff83a54e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff83a54aa5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff83a3adce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff800dd186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011f320b93 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff83a3adce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff800dd186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011f320b93 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff83a3adce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff800dd186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011f320b93 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff83a3adce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff800dd186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011f320b93 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff83a3adce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff800dd186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011f320b93 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff83a3adce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff800dd186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011f320b93 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff83a3adce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x00007fff800dd186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support                  0x000000011f320b93 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff80106d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff80075ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff8006fefb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                                0x000000010598ab3a 0x105951000 + 236346
    7   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff80106d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff80075ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff8006fefb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                                0x000000010598ab3a 0x105951000 + 236346
    7   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff80106d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff80075ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff8006fefb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                                0x000000010598ab3a 0x105951000 + 236346
    7   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff80106d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff80075ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff8006fefb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                                0x000000010598ab3a 0x105951000 + 236346
    7   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff80106d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff80075ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff8006fefb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                                0x000000010598ab3a 0x105951000 + 236346
    7   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff80106d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff80075ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff8006fefb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                                0x000000010598ab3a 0x105951000 + 236346
    7   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff80106d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff80075ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff8006fefb MPWaitOnQueue + 215
    5   AdobeACE                                0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                                0x000000010598ab3a 0x105951000 + 236346
    7   ...ple.CoreServices.CarbonCore          0x00007fff800480d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a758f9 nanosleep + 148
    2   com.adobe.PSAutomate                    0x000000012ecebe4b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate                    0x000000012eccdd83 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate                    0x000000012ecebf46 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000016b40889d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000016b1c15e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000016b4089b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000016b408d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000016b408e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000016b40889d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000016b1c15e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000016b4089b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000016b408d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000016b408e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 22:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000016b40889d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000016b1c15e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000016b4089b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000016b408d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000016b408e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 23:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000016b40889d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000016b1c15e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000016b4089b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000016b408d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000016b408e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 24:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000016b40889d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000016b1c15e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000016b4089b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000016b408d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000016b408e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 25:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000016b40889d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000016b1c15e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000016b4089b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000016b408d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000016b408e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 26:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000016b40889d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000016b1c15e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000016b4089b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000016b408d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000016b408e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 27:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a79881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl                     0x000000016b40889d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000016b1c15e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000016b4089b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000016b408d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000016b408e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 28:
    0   libSystem.B.dylib                       0x00007fff83a3ad7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff83a3b3ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff849e3902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff849e2d8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices           0x00007fff8a3b85f7 MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices           0x00007fff8a3ba1c2 CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 29:
    0   libSystem.B.dylib                       0x00007fff83a3adda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff83a79772 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl                     0x000000016b408869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl                     0x000000016b4250ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl                     0x000000016b4089b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000016b408d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000016b408e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 30:
    0   libSystem.B.dylib                       0x00007fff83a3adda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff83a79772 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl                     0x000000016b408869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl                     0x000000016b5a2ef3 APXGetHostAPI + 4146787
    4   com.adobe.adobeswfl                     0x000000016b4089b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000016b408d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000016b408e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 31:
    0   libSystem.B.dylib                       0x00007fff83a75a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83a758f9 nanosleep + 148
    2   ServiceManager-Launcher.dylib           0x000000013068d1dd Invoke + 52063
    3   ServiceManager-Launcher.dylib           0x000000013068e066 Invoke + 55784
    4   ServiceManager-Launcher.dylib           0x000000013068a8f7 Invoke + 41593
    5   ServiceManager-Launcher.dylib           0x000000013068aac2 Invoke + 42052
    6   ServiceManager-Launcher.dylib           0x000000013068aaf4 Invoke + 42102
    7   ServiceManager-Launcher.dylib           0x000000013068ab49 Invoke + 42187
    8   ServiceManager-Launcher.dylib           0x000000013068ad71 Invoke + 42739
    9   ServiceManager-Launcher.dylib           0x000000013067cdaf Login + 1773
    10  ServiceManager-Launcher.dylib           0x000000013067e295 Login + 7123
    11  ServiceManager-Launcher.dylib           0x000000013068b2a8 Invoke + 44074
    12  ServiceManager-Launcher.dylib           0x000000013068d6c1 Invoke + 53315
    13  libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    14  libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 32:
    0   libSystem.B.dylib                       0x00007fff83a3adda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff83a79772 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl                     0x000000016b408869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl                     0x000000016b4250ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl                     0x000000016b4089b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000016b408d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000016b408e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 33:
    0   libSystem.B.dylib                       0x00007fff83a3adda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff83a79772 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl                     0x000000016b408869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl                     0x000000016b5a2e6f APXGetHostAPI + 4146655
    4   com.adobe.adobeswfl                     0x000000016b4089b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000016b408d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000016b408e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib                       0x00007fff83a73fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff83a73e89 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff70621cc0  rbx: 0x0000000000000000  rcx: 0x0000000000000000  rdx: 0x0000000000001000
      rdi: 0x0000000000000000  rsi: 0x0000000000000001  rbp: 0x00007fff5fbfba60  rsp: 0x00007fff5fbfba50
       r8: 0x0000000000000001   r9: 0x0000000000000004  r10: 0x0000000000000000  r11: 0x00007fff7062b598
      r12: 0x00007fff70621cc0  r13: 0x00000001085cb110  r14: 0x0000000000000000  r15: 0x0000000000001000
      rip: 0x00007fff83a8bdd9  rfl: 0x0000000000010206  cr2: 0x0000000000000068
    Binary Images:
           0x100000000 -        0x1026fbfff +com.adobe.Photoshop 12.0.4 (12.0.4x20110407.r.1265) (12.0.4) <6BFE637D-7ADA-BD5C-F1C5-64AD4688D89D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x1032f4000 -        0x10336cfef +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <4A355686-1451-B19A-0C55-DFE49FD2539E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x103382000 -        0x103389fff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103391000 -        0x1033a1ff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <5D6FFC4E-7B81-3E8C-F0D4-66A3FA94A837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x1033ac000 -        0x1033b2ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <160780A4-C1F4-9752-609D-11E4A2D267C9> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x1033b9000 -        0x1035bffef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x103652000 -        0x103800fef +com.adobe.owl AdobeOwl version 3.0.93 (3.0.93) <74CF40F6-B216-DB73-5C8F-FC5533220CD9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x1038a2000 -        0x103cd2fef +AdobeMPS ??? (???) <E541F5F1-21BB-D779-1475-B1553950E1B9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103e2c000 -        0x104157ff7 +AdobeAGM ??? (???) <770E65CA-643B-CFEE-2BE1-F73D45B77D09> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x104224000 -        0x10454cfe7 +AdobeCoolType ??? (???) <9979447D-9477-BC48-A84E-8A6A6AF380B5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1045e4000 -        0x104605ff7 +AdobeBIBUtils ??? (???) <E0E813D7-0DEE-4BD6-599B-B1DE16008C3C> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x104612000 -        0x10463dff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x10464f000 -        0x104793fef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1047da000 -        0x10483ffff +aif_core ??? (???) <28B07687-9957-7C0B-B221-1B849283C87A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x10485b000 -        0x104871fff +data_flow ??? (???) <81432128-C1BC-2E87-852E-2E4FBE63DEF3> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x104889000 -        0x10491ffff +image_flow ??? (???) <83A775AD-5EFE-4EC1-4EE4-7A92C88D1B02> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104996000 -        0x1049b4fff +image_runtime ??? (???) <F3EE4945-4348-A9BE-61AD-A546D0371C62> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x1049d1000 -        0x104c00fff +aif_ogl ??? (???) <0C2C2B20-688E-18BE-B33C-9B2A816A7E65> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104cdf000 -        0x104d72fff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d92000 -        0x1050dbfef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10526b000 -        0x1053edfe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10548f000 -        0x105807fff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x105951000 -        0x105a66fff +AdobeACE ??? (???) <C544307E-C1E6-FCA8-4D32-2EC0D5820BBD> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a8b000 -        0x105aa7fff +AdobeBIB ??? (???) <EBA9513A-E3A2-10A8-35E9-B2A8DCDE10DD> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105ab1000 -        0x105b1bff7 +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <6B2F73C2-10AB-08B3-4AB0-A31C83D1E5E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x105b4e000 -        0x105c21ffb +AdobeJP2K ??? (???) <BF2DBEA4-E71A-7112-53CA-8E7D73B1EFE5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105c41000 -        0x105c45ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <0C380604-C686-C2E4-0535-C1FAB230187E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x105c49000 -        0x105cc0fff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105ce1000 -        0x105d3fffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105d4d000 -        0x1061e8fff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x10676e000 -        0x1067c4feb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x106809000 -        0x10682effe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x106868000 -        0x10686dffd +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <DFFB9A08-8369-D65F-161F-7C61D562E307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x106872000 -        0x106a0efff +com.adobe.PlugPlug 2.0.0.109 (2.0.0.109) <83092855-E671-F64A-EE0D-1110CF669634> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106ab6000 -        0x106b9cfe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
           0x106bf4000 -        0x106c0dfeb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106c1e000 -        0x106c24feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106c2b000 -        0x106c2bff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x106c2e000 -        0x106c36ff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106fd8000 -        0x106fdafef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x106fef000 -        0x106ff0fff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <13EF98A7-2768-6E1C-2E03-B0C7FDC0B890> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x1082e7000 -        0x1082f6fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <F34F0B34-A1E2-B6A9-3C2C-F25C26B6CA08> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x108700000 -        0x108770ff6 +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <52FF1F9B-9991-ECE2-C7E3-09DA1B368CBE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
           0x11b52a000 -        0x11b541fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <67AF9BEF-03AA-FA92-9530-82D0DF104C3F> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x11b545000 -        0x11b566fef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <EB442E9C-670C-5551-9F72-69E3BB29AF13> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x11b56a000 -        0x11b57cfff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <549EA9F6-D79A-79E4-0CEA-D0CB7C0A12B9> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x11b580000 -        0x11b588fff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
           0x11b5d0000 -        0x11b5d7fff +DisallowFlateCompressedPSD ??? (???) <BCE9EE87-2F64-AC00-328F-0871097481A9> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/DisallowFlateCompressedPSD.plugin/Contents/MacOS/DisallowFlateCom pressedPSD
           0x11b5e0000 -        0x11b5e7fff +Enable Async IO ??? (???) <3935C129-0FAE-3EAC-0CF2-4D740CD22E43> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x11b7de000 -        0x11b7e7fff +FastCore ??? (???) <25D92063-457F-C14A-6BE8-1C96C54F904C> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11ecf9000 -        0x11ecfafff  ATSHI.dylib ??? (???) <F6C4F446-7AC4-7A17-9302-C38A016322B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
           0x11f000000 -        0x11f026fff  GLRendererFloat ??? (???) <490221DD-53D9-178E-3F31-3A4974D34DCD> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
           0x11f200000 -        0x11f263ff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11f2eb000 -        0x11f356ff0 +MultiProcessor Support ??? (???) <4CDEDB26-96A2-631F-3C4B-FC3DBE9E2A02> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x1258d0000 -        0x1258f0ffb +com.adobe.ape adbeapecore version 3.1.70.10055 (3.1.70.10055) <66373ADB-0865-ECDB-D3D0-B3373FC43919> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x12e3c8000 -        0x12e3cefe7  libFontStreams.A.dylib 545.0.0 (compatibility 64.0.0) <87272933-FB21-81D0-00E6-92BC3D7583FB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libFontStreams.A.dylib
           0x12ea00000 -        0x12eac4fef +com.imagenomic.imagenomicconsole ??? (???) <B15FFB37-4580-4382-AE25-A636E6E23EA8> /Applications/Imagenomic/Common/ImagenomicPluginConsole.plugin/Contents/MacOS/ImagenomicP luginConsole
           0x12eb69000 -        0x12edc6fef +com.adobe.PSAutomate 12.0.2 (12.0.2) <2A43E60A-F63A-68A0-A73C-5BEEE05E6F33> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x12efe5000 -        0x12f089ffb +com.adobe.AdobeExtendScript ExtendScript 4.1.26 (4.1.26.11099) <00717496-ACE1-7D2F-DEE7-4316D0AB52D5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x12f0eb000 -        0x12f18bfef +com.adobe.AdobeScCore ScCore 4.1.26 (4.1.26.11099) <036DBC1F-0576-705F-3507-213E9F455222> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x12f477000 -        0x12f47bfff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
           0x12f480000 -        0x12f486ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <C35BDA60-35FC-4BE7-B378-DCC73D99E2C9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
           0x12fe00000 -        0x12ff93fe7  GLEngine ??? (???) <53A8A7E8-4846-D236-F3D9-DA3F2AF686D8> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x12ffc4000 -        0x1303e0fff  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <EBE273B9-6BF7-32B1-C5A2-2B3C85D776AA> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLD river
           0x130446000 -        0x130484ff7  com.apple.DP.ScreenInputDevice 13.0 (13.0) <FDDC5EDA-A3C1-34CE-B976-B8845B943CC3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/AppleScreenInpu tDevice.plugin/Contents/MacOS/AppleScreenInputDevice
           0x13067a000 -        0x1306a2fef +ServiceManager-Launcher.dylib ??? (???) <4608E5E7-7F22-A4FF-527C-E97EA339FCCC> /Library/Application Support/Adobe/CS5ServiceManager/lib/ServiceManager-Launcher.dylib
           0x130f9f000 -        0x130fdcfeb +com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 1.0.0.64 (1.0.0.64) <CD8BD7C7-0F66-29B6-C158-A6EF8DF69996> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotification s
           0x16b181000 -        0x16bfe9ff3 +com.adobe.adobeswfl ??? (2.0.0.10053) <ADE7E8AA-80B6-7BAC-8205-13D7A0E89DF8> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/Ado beSWFL
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <486E6C61-1197-CC7C-2197-82CE505102D7> /usr/lib/dyld
        0x7fff80003000 -     0x7fff80040ff7  libFontRegistry.dylib ??? (???) <4C3293E2-851B-55CE-3BE3-29C425DD5DFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff80041000 -     0x7fff80375fef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff80376000 -     0x7fff803b9ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff803ba000 -     0x7fff803cfff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff803dd000 -     0x7fff80447fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff80c76000 -     0x7fff80d02fef  SecurityFoundation ??? (???) <F43FDB02-CAA5-F8FF-C8D7-6665E7403ECE> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff80d03000 -     0x7fff80dcefff  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <E72880D9-3B5D-D086-9266-F4F3C294619F> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff80dcf000 -     0x7fff80e10fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff80e11000 -     0x7fff80e73fe7  com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff80e74000 -     0x7fff80e74ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff80e8e000 -     0x7fff80ed6ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff80ed7000 -     0x7fff80ed7ff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff80ed8000 -     0x7fff80f13fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff80f14000 -     0x7fff80f43ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
        0x7fff80f44000 -     0x7fff80f8bfff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff80fe1000 -     0x7fff8102cfef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
        0x7fff8102d000 -     0x7fff81074ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff81075000 -     0x7fff812fffff  com.apple.JavaScriptCore 6534.51 (6534.51.21) <848CAF7C-CDC4-A280-378C-24A701BA6F1A> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff81338000 -     0x7fff81338ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff81345000 -     0x7fff81349ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXTyp

  • Erro de instalaçao do vs 2010

    [04/15/10,10:38:30] Microsoft Visual Studio 2010 Ultimate RC -
    ENU: [2] ERROR:Error 25541.Failed to open XML file C:\Windows\Microsoft.NET\Framework\v4.0.30128\CONFIG\machine.config, system error: -2147024786[04/15/10,10:38:31] Microsoft Visual Studio 2010 Ultimate RC - ENU: [2] ACTION FAILURE:Action ended 10:38:31: InstallFinalize. Return value 3.See MSI log for details.[04/15/10,10:39:41] Microsoft Visual Studio 2010 Ultimate RC - ENU: [2] ACTION FAILURE:Action ended 10:39:41: INSTALL. Return value 3.See MSI log for details.[04/15/10,10:40:21] setup.exe: [2] ISetupComponent::Pre/Post/Install() failed in ISetupManager::InternalInstallManager() with HRESULT -2147023293.[04/15/10,10:40:22] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio 2010 Ultimate RC - ENU is not installed.[04/15/10,10:40:22] VS70pgui: [2] DepCheck indicates Microsoft Web Deployment Tool (x86) was not attempted to be installed.[04/15/10,10:40:22] VS70pgui: [2] DepCheck indicates Microsoft ASP.NET MVC 2 - Visual Studio 2010 Tools was not attempted to be installed.[04/15/10,10:40:22] VS70pgui: [2] DepCheck indicates Microsoft ASP.NET MVC 2 was not attempted to be installed.[04/15/10,10:40:22] VS70pgui: [2] DepCheck indicates Microsoft Silverlight was not attempted to be installed.[04/15/10,10:40:23] VS70pgui: [2] DepCheck indicates Microsoft Silverlight 3 SDK was not attempted to be installed.[04/15/10,10:40:23] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio 2010 Tools for Office Runtime (x86) was not attempted to be installed.[04/15/10,10:40:23] VS70pgui: [2] DepCheck indicates Microsoft Office Developer Tools (x86) was not attempted to be installed.[04/15/10,10:40:23] VS70pgui: [2] DepCheck indicates Dotfuscator Software Services - Community Edition was not attempted to be installed.[04/15/10,10:40:23] VS70pgui: [2] DepCheck indicates Crystal Reports templates for Visual Studio 2010 was not attempted to be installed.[04/15/10,10:40:23] VS70pgui: [2] DepCheck indicates Microsoft SQL Server Compact 3.5 SP2 (x86) ENU was not attempted to be installed.[04/15/10,10:40:23] VS70pgui: [2] DepCheck indicates Visual Studio 2010 Tools for SQL Server Compact 3.5 SP2 ENU was not attempted to be installed.[04/15/10,10:40:23] VS70pgui: [2] DepCheck indicates Microsoft Sync Framework Runtime v1.0 (x86) ENU was not attempted to be installed.[04/15/10,10:40:24] VS70pgui: [2] DepCheck indicates Microsoft Sync Services for ADO.NET v2.0 (x86) ENU was not attempted to be installed.[04/15/10,10:40:24] VS70pgui: [2] DepCheck indicates Microsoft Sync Framework Services v1.0 (x86) ENU was not attempted to be installed.[04/15/10,10:40:24] VS70pgui: [2] DepCheck indicates Microsoft Sync Framework SDK v1.0 (x86) ENU was not attempted to be installed.[04/15/10,10:40:24] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio 2010 Performance Collection Tools (x86) was not attempted to be installed.[04/15/10,10:40:24] VS70pgui: [2] DepCheck indicates Microsoft SQL Publishing Wizard 1.4 was not attempted to be installed.[04/15/10,10:40:24] VS70pgui: [2] DepCheck indicates Microsoft SQL Server System CLR Types was not attempted to be installed.[04/15/10,10:40:24] VS70pgui: [2] DepCheck indicates Microsoft SQL Server 2008 R2 Management Objects was not attempted to be installed.[04/15/10,10:40:25] VS70pgui: [2] DepCheck indicates Microsoft SQL Server 2008 R2 Data-Tier Application Framework was not attempted to be installed.[04/15/10,10:40:25] VS70pgui: [2] DepCheck indicates Microsoft SQL Server 2008 R2 Data-Tier Application Project was not attempted to be installed.[04/15/10,10:40:25] VS70pgui: [2] DepCheck indicates Microsoft SQL Server 2008 R2 Transact-SQL Language Service was not attempted to be installed.[04/15/10,10:40:25] VS70pgui: [2] DepCheck indicates Microsoft SharePoint Developer Tools was not attempted to be installed.[04/15/10,10:40:25] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio 2010 ADO.NET Entity Framework Tools was not attempted to be installed.[04/15/10,10:40:25] VS70pgui: [2] DepCheck indicates Microsoft Help Viewer 1.0 x86 was not attempted to be installed.
    tenho um pasta old com a framew. Old_v4.0.30128 sem o ficheiro xml
    e a recente v4.0.30319 completa tem alguma forma de mudar na instalaçao o target do xml?
    lobo

    Either ask in http://forums.asp.net/ (in English), or search for an ASP.net forum in Portuguese.
    Pergunte em http://forums.asp.net/ (em inglês), ou Procurer um forum ASP.net em Português.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book: Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

Maybe you are looking for

  • Downloading iTunes 7.5 for Windows Vista

    The installation goes smoothly until after Quicktime has been installed, there is a message that pops up saying "Could not open key: HKEYLOCALMACHINE\Software\Classes\QuickTimePlayerLib.QuickTimePlayerApp\CLSID." In the support it tells me: "If the i

  • 3 tb partitioning on a late 2012 Imac

    Hello, How can i with a regular 7200 Rpm Sata 3TB HDD on my brand New Imac 27" Late 2012, make a 512GB Osx Partition, an 512GB Windows 8 and a 2 TB just for data Storage particion? I'm Going nuts with this....

  • Error message: Host process for windows services stopped

    I recently had to install a new hard drive into my laptop. I am running windows vista and have installed all updated drivers. After installing itunes and uploading my backed up library, I went to play a song and I got the error "host process for wind

  • Where to learn in-depth info about macs?

    Hey everyone. I'm not only new to the Apple support community but also I'm new to macbooks in general. I'm having a difficult time wording this question correctly as I don't want to confuse anyone. I care to learn more than the basic functions of a m

  • Error while trying to import using OdiImportObject

    When trying to import project using OdiImportObject from command prompt the following error is encountered... E:\ODIHome\oracledi\bin>startcmd.bat OdiImportObject -FILE_NAME=E:\slot\ego\patch\115\odi\US\mode\MFOL_PIM.xml -IMPORT_MODE=SYNONYM_INSERT_U