Why does my drawing gets cleared sometime after paint() ?

I ' m using a JNI dll for a special video player with JDK 1.6.13 on Windows XP. For painting the video frames I followed the AWT_Native_Native Interface spec on
[http://java.sun.com/j2se/1.5.0/docs/guide/awt/1.3/AWT_Native_Interface.html]
For the drawing I use SetDIBitsToDevice() from MS DirectDraw. For testing I tried also TextOut(). Both functions with their painting work, but some time after the paint() call my canvas frame gets completely cleared. Sometimes my painting stays on the screen - but only until the next update event. From the debugger it looks like the window gets cleared after the thread from the paint() method has finished.
Interestingly if I call Java draw functions in the paint() method (without JNI), the drawing stays permanently.
Are there any changes in the JVM 1.6 which are not included in the AWT_Native_Interface Spec?
Thanks for any help or working example code,
Stefan

The real solution is to call:
      Toolkit.getDefaultToolkit().sync();in the overridden paint() method before the JNI drawing call.

Similar Messages

  • Why does cache automatically gets cleared

    since the latest update of my firefox my cache are getting cleared automatically after a 2 to 3 days.... i have read u r earlier post n nothing helps , i have done everything and even re-installed my operating system....all this is happening after installing the latest firefox .... please if you have any real fix that actually helps and not the same old replies , please help ..i can't daily keep waiting for my cache to reload ....

    oh and it failed too all my 350 mb of cache is gone now, i play online games daily and this stupid firefox expects me to load daily so much of cache each and every time?????.... i stored cache from firefox profile folder as a backup but everytime i replace it it again auto deletes it.... i should have sticked with google chrome ....never again firefox ...damn

  • Why does my Mac get so hot after I installed Sims 3 on it?

    Ever since I installed the Sims 3 on my mac book pro it has been getting really hot. Is the Sims to hard for it? What can I do to cool it down? Thanks. I resently updated it to OS X version 10.9 if that info will help.

    Welcome to Apple Support Communities
    Games make your computer work harder, generating more heat. You shouldn't be worried about this, because fans will turn on automatically when your Mac is hot. If you want to check the temperature of your computer, get Temperature Monitor

  • HT203167 Why do files that I have organized into folders not stay in their folders after closing and reopening iTunes? And Why does the renaming get undone? I do this in iTunes Media/ Music.

    Why do files that I have organized into folders not stay in their folders after closing and reopening iTunes? And Why does the renaming get undone? I do this in iTunes Media/ Music.

    I recently had to reinstall my software for a
    dell computer a dell latitude d 830, then after installing all of my software and such including itunes the player did well even record to disks with no problems now that my system has done alot of updating of system files....now the itunes does not burn to my cd...error message 2131 this time
    The 2131 usually indicates firmware needs to be updated on a drive.
    Head to your drivers and downloads page for your latitude at Dell, and check for updates to your firmware for your optical drives. If you're behind and you update, does that clear up the 2131?

  • Why does this little program crash sometimes?

    I don't know if the code of the program is the most important here, I'm guessing I have to learn some extra things to help the program not crash anymore. But what?
    My question remains, still: Why does this little program crash sometimes?, because I might guess wrong.
    The program is a small application that let's you introduce two numbers in 2 text fields (or if you want, there is also a button that generates some random int numbers to complete the text fields for you), let's you introduces the result of the division of those numbers in another text field, and the result of the multiplication of those numbers in another text field. Then you have another 2 buttons that after being pushed, tell you if you resolved the operations right.
    The application runs fine most of the times, but sometimes it just freezes when I push the button that generates new random numbers.
    Why does this happen? Why does this happen only sometimes and not all the time?

    package my.NumberAddition;
    * @author  zi02
    public class NumberAdditionUI extends javax.swing.JFrame {
        /** Creates new form NumberAdditionUI */
        public NumberAdditionUI() {
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                         
        private void initComponents() {
            buttonGroup1 = new javax.swing.ButtonGroup();
            jPanel1 = new javax.swing.JPanel();
            jLabel1 = new javax.swing.JLabel();
            jLabel2 = new javax.swing.JLabel();
            jLabel3 = new javax.swing.JLabel();
            jTextField1 = new javax.swing.JTextField();
            jTextField2 = new javax.swing.JTextField();
            jTextField3 = new javax.swing.JTextField();
            jButton1 = new javax.swing.JButton();
            jButton2 = new javax.swing.JButton();
            jTextField4 = new javax.swing.JTextField();
            jButton4 = new javax.swing.JButton();
            jTextField5 = new javax.swing.JTextField();
            jLabel4 = new javax.swing.JLabel();
            jTextField6 = new javax.swing.JTextField();
            jButton5 = new javax.swing.JButton();
            jButton3 = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jPanel1.setBorder(javax.swing.BorderFactory.createTitledBorder(new javax.swing.border.SoftBevelBorder(javax.swing.border.BevelBorder.RAISED), "Number Addition", javax.swing.border.TitledBorder.DEFAULT_JUSTIFICATION, javax.swing.border.TitledBorder.DEFAULT_POSITION, new java.awt.Font("Tahoma", 0, 11), new java.awt.Color(0, 153, 204))); // NOI18N
            jLabel1.setText("First Number:");
            jLabel2.setText("Second Number:");
            jLabel3.setText("Multiply:");
            jTextField3.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jTextField3ActionPerformed(evt);
            jButton1.setText("Clear");
            jButton1.setBorder(javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED));
            buttonGroup1.add(jButton1);
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            jButton2.setText("Result");
            jButton2.setBorder(javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED));
            buttonGroup1.add(jButton2);
            jButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton2ActionPerformed(evt);
            jButton4.setText("Result");
            jButton4.setBorder(javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED));
            buttonGroup1.add(jButton4);
            jButton4.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton4ActionPerformed(evt);
            jLabel4.setText("Divide:");
            jTextField6.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jTextField6ActionPerformed(evt);
            jButton5.setText("New Numbers");
            jButton5.setBorder(javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED));
            jButton5.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton5ActionPerformed(evt);
            javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
            jPanel1.setLayout(jPanel1Layout);
            jPanel1Layout.setHorizontalGroup(
                jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jPanel1Layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jLabel4, javax.swing.GroupLayout.Alignment.TRAILING)
                        .addComponent(jLabel3, javax.swing.GroupLayout.Alignment.TRAILING)
                        .addComponent(jLabel2, javax.swing.GroupLayout.Alignment.TRAILING)
                        .addComponent(jLabel1, javax.swing.GroupLayout.Alignment.TRAILING))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                        .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()
                            .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addComponent(jTextField6, javax.swing.GroupLayout.Alignment.TRAILING)
                                .addComponent(jTextField3, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 112, Short.MAX_VALUE))
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addComponent(jButton4, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                                .addComponent(jButton2, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addComponent(jTextField4, javax.swing.GroupLayout.DEFAULT_SIZE, 41, Short.MAX_VALUE)
                                .addComponent(jTextField5, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 65, Short.MAX_VALUE)))
                        .addGroup(jPanel1Layout.createSequentialGroup()
                            .addGap(84, 84, 84)
                            .addComponent(jButton5)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(jButton1))
                        .addComponent(jTextField2)
                        .addComponent(jTextField1))
                    .addContainerGap())
            jPanel1Layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {jButton1, jButton2, jButton4});
            jPanel1Layout.setVerticalGroup(
                jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jPanel1Layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel1)
                        .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel2)
                        .addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel3)
                        .addComponent(jButton2)
                        .addComponent(jTextField3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jTextField5, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jButton4)
                        .addComponent(jTextField4, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jLabel4)
                        .addComponent(jTextField6, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jButton1)
                        .addComponent(jButton5))
                    .addContainerGap(15, Short.MAX_VALUE))
            jButton3.setText("Exit");
            jButton3.setBorder(javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED));
            jButton3.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton3ActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jPanel1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 345, Short.MAX_VALUE)
                        .addComponent(jButton3, javax.swing.GroupLayout.Alignment.TRAILING))
                    .addContainerGap())
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addComponent(jButton3)
                    .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            pack();
        }// </editor-fold>                       
    private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {                                        
        System.exit(0);
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
        jTextField1.setText("");
        jTextField2.setText("");
        jTextField3.setText("");
        jTextField4.setText("");
        jTextField5.setText("");
        jTextField6.setText("");
        @SuppressWarnings("empty-statement")
    private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                        
        // First we define float variables.
        float num1, num2, num3,  result;
        // We have to parse the text to a type float.
        num1 = Float.parseFloat(jTextField1.getText());
        num2 = Float.parseFloat(jTextField2.getText());
        // Now we can perform the addition.
        num3 = Float.parseFloat(jTextField3.getText());
        // We will now pass the value of result to jTextField3.
        // At the same time, we are going to
        // change the value of result from a float to a string.
        result = num1*num2;
        if (num3==result)
        jTextField5.setText("Correct");
        else jTextField5.setText("Wrong");
    private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {                                        
        // First we define float variables.
        float num1, num2, num4, result;
        // We have to parse the text to a type float.
        num1 = Float.parseFloat(jTextField1.getText());
        num2 = Float.parseFloat(jTextField2.getText());
        // Now we can perform the addition.
        num4 = Float.parseFloat(jTextField6.getText());
        // We will now pass the value of result to jTextField3.
        // At the same time, we are going to
        // change the value of result from a float to a string.
        result = num1/num2;
        if (num4==result)
        jTextField4.setText("Correct");
        else jTextField4.setText("Wrong");
    private void jTextField6ActionPerformed(java.awt.event.ActionEvent evt) {                                           
    // TODO add your handling code here:
    private void jTextField3ActionPerformed(java.awt.event.ActionEvent evt) {                                           
    // TODO add your handling code here:
    private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {                                        
        int number1,number2;
        number1 = (int)(Math.random()*100);
        number2 = (int)(Math.random()*100);
        while ((number1 < number2) || (number2 == 0) ||(number2==1)
                || (number1 % number2 !=0))
            number2 = (int)(Math.random()*10);       
        jTextField1.setText(String.valueOf(number1));
        jTextField2.setText(String.valueOf(number2));
        jTextField3.setText("");
        jTextField4.setText("");
        jTextField5.setText("");
        jTextField6.setText("");
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new NumberAdditionUI().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.ButtonGroup buttonGroup1;
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JButton jButton3;
        private javax.swing.JButton jButton4;
        private javax.swing.JButton jButton5;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel3;
        private javax.swing.JLabel jLabel4;
        private javax.swing.JPanel jPanel1;
        private javax.swing.JTextField jTextField1;
        private javax.swing.JTextField jTextField2;
        private javax.swing.JTextField jTextField3;
        private javax.swing.JTextField jTextField4;
        private javax.swing.JTextField jTextField5;
        private javax.swing.JTextField jTextField6;
        // End of variables declaration                  
    }

  • Why does my iPod Shuffle stop working after a few songs?

    I had my iPod Shuffle for about a month now and it's already causing me trouble.
    I would play a couple of songs, but when I go to change it, it stops working. I turn it off and on again only to have it take me back to where I started off at (e.g. Let's say I have 100 songs, I start at 50 and I get to 55 before it shuts off. When I turn it back on, it starts at 50 all over again). This process would happen over and over again with seemingly no end.
    So my question is, why does my iPod Shuffle stop working after a few songs and how can I fix it?
    I already tried using the iTunes troubleshooting guide, but nothing worked.
    Details -
    4th Generation
    I only use it at the gym or when I'm running
    I've only used the Apple products that came with it so far
           (e.g. charger, headphones, etc.)
    881 MB are still left
    Music stops randomly, no common number or pattern

    I had the same problem, I purchased a new ipod shuffle, followed the instructions but it would stop after a few songs and I would have to shut it off, wait and turn it back on and it would go back to the same song and then once again, after a few songs it would shut off. I returned the ipod and got another one, same thing happened. This is how I resolved the issue.
    1. open itunes, make sure its up to date, then connect your shuffle to your pc
    2.on the left of the itunes window, select your ipod, then at the top select music then check the sync box and select "selected playlists"
    3.then go back and click on your ipod on the left, a message will appear just select apply
    all of your music should be emptied from your ipod.
    4.delete all of your playlists on the left, this will not delete anything from your library. Delete the "purchased" playlist under itunes store on the left as well, once again this will not delete anything from your library
    5.There should be an arrow just in front of your ipod, click on this arrow and you should see your music file for the ipod appear, this should be the only file that you see, everything else should be deleted.
    6. go to your music library and check only the songs that you want to load into your ipod. Double click on each song to make sure that they all play.
    If you find a song that does not play you should be asked to authorize it, don't waste your time that did not solve the issue for me, instead cancel to authorize the song and then delete the song and move it to recycle bin. Once the song is deleted a cloud should appear, click on the cloud and download the song again, when done, make sure the song plays and that it is checked.
    7.After you have made sure that all of the songs play and are checked, click on your ipod once more, located to the left, check the box  "sync only checked songs" then from the top select music. In the music window select "sync music' and then select "entire music Library"
    8. Go back to the left and click on the arrow in front of your ipod, you should see the music file, click on the music file and you should see all of your music being loaded to your ipod.
    9. When all of the music is done loading, eject your ipod by clicking on the arrow located after the battery symbol where your ipod appears on the left
    10. Turn on your ipod and scroll through your songs to make sure that the problem is resolved.
    Not sure if all of this was necessary but it worked for me.

  • I installed the new java, so why does my CS5 Photoshop shut down after a while?

    I installed the new java, so why does my CS5 Photoshop shut down after a while? It especially likes to shut down after I try to print.

    This is what I am getting when I get "details." It is not giving me a report. I'm sorry if it is too much. Not sure what to send or tell you.
    Details follow:
    Process:    
    Adobe Photoshop CS5 [652]
    Path:       
    /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier: 
    com.adobe.Photoshop
    Version:    
    12.0 (12.0x20100407.r.1103] [12.0)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [150]
    Responsible:
    Adobe Photoshop CS5 [652]
    User ID:    
    502
    Date/Time:  
    2014-04-16 16:35:27.633 -0400
    OS Version: 
    Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  1F2C4F3E-5E6B-3D9B-95BC-93A3BC78FA3D
    Sleep/Wake UUID: F8FE9893-9203-4041-8B08-53D9AF2D833A
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00007fff72717818
    VM Regions Near 0x7fff72717818:
    __DATA            
    00007fff726fe000-00007fff72700000 [
    8K] rw-/rwx SM=COW  /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    --> __DATA            
    00007fff72700000-00007fff72755000 [  340K] rw-/rwx SM=COW  /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    unused shlib __DATA
    00007fff72755000-00007fff7278d000 [  224K] rw-/rwx SM=COW  system shared lib __DATA not used by this process
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                      
    0x00007fff72717818 OBJC_CLASS_$_NSMutableArray + 0
    1   com.apple.print.framework.PrintCore
    0x00007fff8cec56f1 PMRelease + 43
    2   com.adobe.Photoshop      
    0x0000000100c237cf AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 9727123
    3   com.adobe.Photoshop      
    0x0000000100c23e7d AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 9728833
    4   com.adobe.Photoshop      
    0x0000000100c23eb7 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 9728891
    5   com.adobe.Photoshop      
    0x0000000100c23da5 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 9728617
    6   com.adobe.Photoshop      
    0x0000000100aee053 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 8459543
    7   com.adobe.Photoshop      
    0x0000000100768c64 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4768040
    8   com.adobe.Photoshop      
    0x0000000100af067e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 8469314
    9   com.adobe.Photoshop      
    0x0000000100af0be9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 8470701
    10  com.adobe.Photoshop      
    0x0000000100af1295 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 8472409
    11  com.adobe.Photoshop      
    0x000000010007bbdc 0x100000000 + 506844
    12  com.adobe.Photoshop      
    0x00000001000d6a7e 0x100000000 + 879230
    13  com.adobe.Photoshop      
    0x00000001000d6a9e 0x100000000 + 879262
    14  com.adobe.Photoshop      
    0x0000000100066eb1 0x100000000 + 421553
    15  com.adobe.Photoshop      
    0x0000000100071d74 0x100000000 + 466292
    16  com.adobe.Photoshop      
    0x000000010006716f 0x100000000 + 422255
    17  com.adobe.Photoshop      
    0x0000000100067232 0x100000000 + 422450
    18  com.adobe.Photoshop      
    0x00000001012f0007 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16856267
    19  com.apple.AppKit         
    0x00007fff8328db89 -[NSApplication run] + 646
    20  com.adobe.Photoshop      
    0x00000001012ee19c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16848480
    21  com.adobe.Photoshop      
    0x00000001012ef3c7 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16853131
    22  com.adobe.Photoshop      
    0x0000000100068e82 0x100000000 + 429698
    23  com.adobe.Photoshop      
    0x0000000100238308 0x100000000 + 2327304
    24  com.adobe.Photoshop      
    0x00000001002383a7 0x100000000 + 2327463
    25  com.adobe.Photoshop      
    0x0000000100002ea4 0x100000000 + 11940
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff874d1662 kevent64 + 10
    1   libdispatch.dylib        
    0x00007fff8712e43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib        
    0x00007fff8712e152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib   
    0x00007fff874d0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cfb9c3b _pthread_cond_wait + 727
    2   com.adobe.amt.services   
    0x0000000109696c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services   
    0x000000010968fcce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services   
    0x0000000109696cbe AMTThread::Worker(void*) + 28
    5   libsystem_pthread.dylib  
    0x00007fff8cfb7899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cfb772a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cfbbfc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff874cca6e semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8ad7f47b MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010c22ebd3 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8ad7f6c3 PrivateMPEntryPoint + 58
    4   libsystem_pthread.dylib  
    0x00007fff8cfb7899 _pthread_body + 138
    5   libsystem_pthread.dylib  
    0x00007fff8cfb772a _pthread_start + 137
    6   libsystem_pthread.dylib  
    0x00007fff8cfbbfc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff874d0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cfb9c3b _pthread_cond_wait + 727
    2   com.apple.CoreServices.CarbonCore
    0x00007fff8adae800 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8adae9ff TSWaitOnConditionTimedRelative + 172
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8ad7f145 MPWaitOnQueue + 192
    5   AdobeACE                 
    0x000000010592923d 0x1058ef000 + 238141
    6   AdobeACE                 
    0x0000000105928bea 0x1058ef000 + 236522
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8ad7f6c3 PrivateMPEntryPoint + 58
    8   libsystem_pthread.dylib  
    0x00007fff8cfb7899 _pthread_body + 138
    9   libsystem_pthread.dylib  
    0x00007fff8cfb772a _pthread_start + 137
    10  libsystem_pthread.dylib  
    0x00007fff8cfbbfc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff874d0a3a __semwait_signal + 10
    1   libsystem_c.dylib        
    0x00007fff89a5adc0 nanosleep + 200
    2   com.adobe.PSAutomate     
    0x000000010e5820fb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate     
    0x000000010e564033 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate     
    0x000000010e5821f6 ScObjects::Thread::go(void*) + 166
    5   libsystem_pthread.dylib  
    0x00007fff8cfb7899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cfb772a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cfbbfc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff874cca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff874cbd18 mach_msg + 64
    2   com.apple.CoreFoundation 
    0x00007fff84657155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation 
    0x00007fff84656779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation 
    0x00007fff846560b5 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit         
    0x00007fff8343a16e _NSEventThread + 144
    6   libsystem_pthread.dylib  
    0x00007fff8cfb7899 _pthread_body + 138
    7   libsystem_pthread.dylib  
    0x00007fff8cfb772a _pthread_start + 137
    8   libsystem_pthread.dylib  
    0x00007fff8cfbbfc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff874d0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cfb9c3b _pthread_cond_wait + 727
    2   com.adobe.adobeswfl      
    0x00000001453e404d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl      
    0x00000001451a5a39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl      
    0x00000001453e4161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl      
    0x00000001453e42ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl      
    0x00000001453e43b0 APXGetHostAPI + 2431376
    7   libsystem_pthread.dylib  
    0x00007fff8cfb7899 _pthread_body + 138
    8   libsystem_pthread.dylib  
    0x00007fff8cfb772a _pthread_start + 137
    9   libsystem_pthread.dylib  
    0x00007fff8cfbbfc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff874d0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cfb9c3b _pthread_cond_wait + 727
    2   com.adobe.adobeswfl      
    0x00000001453e404d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl      
    0x00000001451a5a39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl      
    0x00000001453e4161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl      
    0x00000001453e42ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl      
    0x00000001453e43b0 APXGetHostAPI + 2431376
    7   libsystem_pthread.dylib  
    0x00007fff8cfb7899 _pthread_body + 138
    8   libsystem_pthread.dylib  
    0x00007fff8cfb772a _pthread_start + 137
    9   libsystem_pthread.dylib  
    0x00007fff8cfbbfc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib   
    0x00007fff874d0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cfb9c77 _pthread_cond_wait + 787
    2   com.adobe.adobeswfl      
    0x00000001453e4019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl      
    0x0000000145579943 APXGetHostAPI + 4091683
    4   com.adobe.adobeswfl      
    0x00000001453e4161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl      
    0x00000001453e42ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl      
    0x00000001453e43b0 APXGetHostAPI + 2431376
    7   libsystem_pthread.dylib  
    0x00007fff8cfb7899 _pthread_body + 138
    8   libsystem_pthread.dylib  
    0x00007fff8cfb772a _pthread_start + 137
    9   libsystem_pthread.dylib  
    0x00007fff8cfbbfc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib   
    0x00007fff874d0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cfb9c77 _pthread_cond_wait + 787
    2   com.adobe.adobeswfl      
    0x00000001453e4019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl      
    0x000000014540095c APXGetHostAPI + 2547516
    4   com.adobe.adobeswfl      
    0x00000001453e4161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl      
    0x00000001453e42ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl      
    0x00000001453e43b0 APXGetHostAPI + 2431376
    7   libsystem_pthread.dylib  
    0x00007fff8cfb7899 _pthread_body + 138
    8   libsystem_pthread.dylib  
    0x00007fff8cfb772a _pthread_start + 137
    9   libsystem_pthread.dylib  
    0x00007fff8cfbbfc9 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib   
    0x00007fff874d091a __recvfrom + 10
    1   ServiceManager-Launcher.dylib
    0x0000000110312982 Invoke + 54020
    2   ServiceManager-Launcher.dylib
    0x0000000110311adf Invoke + 50273
    3   ServiceManager-Launcher.dylib
    0x0000000110310b26 Invoke + 46248
    4   ServiceManager-Launcher.dylib
    0x0000000110310b81 Invoke + 46339
    5   ServiceManager-Launcher.dylib
    0x0000000110310c02 Invoke + 46468
    6   ServiceManager-Launcher.dylib
    0x000000011030b30d Invoke + 23695
    7   ServiceManager-Launcher.dylib
    0x000000011030b4a6 Invoke + 24104
    8   ServiceManager-Launcher.dylib
    0x000000011030bf2f Invoke + 26801
    9   ServiceManager-Launcher.dylib
    0x000000011030c01d Invoke + 27039
    10  ServiceManager-Launcher.dylib
    0x000000011030f31f Invoke + 40097
    11  ServiceManager-Launcher.dylib
    0x000000011030f5c5 Invoke + 40775
    12  ServiceManager-Launcher.dylib
    0x000000011030fb84 Invoke + 42246
    13  ServiceManager-Launcher.dylib
    0x000000011030fd71 Invoke + 42739
    14  ServiceManager-Launcher.dylib
    0x0000000110301daf Login + 1773
    15  ServiceManager-Launcher.dylib
    0x0000000110303295 Login + 7123
    16  ServiceManager-Launcher.dylib
    0x00000001103102a8 Invoke + 44074
    17  ServiceManager-Launcher.dylib
    0x00000001103126c1 Invoke + 53315
    18  libsystem_pthread.dylib  
    0x00007fff8cfb7899 _pthread_body + 138
    19  libsystem_pthread.dylib  
    0x00007fff8cfb772a _pthread_start + 137
    20  libsystem_pthread.dylib  
    0x00007fff8cfbbfc9 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib   
    0x00007fff874d0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cfb9c77 _pthread_cond_wait + 787
    2   com.apple.CoreServices.CarbonCore
    0x00007fff8adae9e7 TSWaitOnConditionTimedRelative + 148
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8adae609 TSWaitOnSemaphoreCommon + 424
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8ad6a1c4 AsyncFileThread(void*) + 257
    5   libsystem_pthread.dylib  
    0x00007fff8cfb7899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cfb772a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cfbbfc9 thread_start + 13
    Thread 13:: Dispatch queue: NSOperationQueue Serial Queue
    0   libsystem_kernel.dylib   
    0x00007fff874d0746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cfba779 _pthread_mutex_lock + 372
    2   com.apple.Foundation     
    0x00007fff8c05022b -[NSLock lock] + 145
    3   com.apple.AppKit         
    0x00007fff834fefc1 __37-[NSUIHeartBeat updateHeartBeatState]_block_invoke135 + 62
    4   com.apple.Foundation     
    0x00007fff8c06d0b5 -[NSBlockOperation main] + 75
    5   com.apple.Foundation     
    0x00007fff8c04c8ac -[__NSOperationInternal _start:] + 642
    6   com.apple.Foundation     
    0x00007fff8c04c54b __NSOQSchedule_f + 64
    7   libdispatch.dylib        
    0x00007fff8712c2ad _dispatch_client_callout + 8
    8   libdispatch.dylib        
    0x00007fff8712e68f _dispatch_queue_drain + 451
    9   libdispatch.dylib        
    0x00007fff8712f9dd _dispatch_queue_invoke + 110
    10  libdispatch.dylib        
    0x00007fff8712dfa3 _dispatch_root_queue_drain + 75
    11  libdispatch.dylib        
    0x00007fff8712f193 _dispatch_worker_thread2 + 40
    12  libsystem_pthread.dylib  
    0x00007fff8cfb8ef8 _pthread_wqthread + 314
    13  libsystem_pthread.dylib  
    0x00007fff8cfbbfb9 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib   
    0x00007fff874d0e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cfb8f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cfbbfb9 start_wqthread + 13
    Thread 15:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib   
    0x00007fff874d0a3a __semwait_signal + 10
    1   libsystem_c.dylib        
    0x00007fff89a5adc0 nanosleep + 200
    2   libsystem_c.dylib        
    0x00007fff89a5acb2 usleep + 54
    3   com.apple.AppKit         
    0x00007fff834fe21d -[NSUIHeartBeat _heartBeatThread:] + 2132
    4   com.apple.Foundation     
    0x00007fff8c0ab76b __NSThread__main__ + 1318
    5   libsystem_pthread.dylib  
    0x00007fff8cfb7899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cfb772a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cfbbfc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib   
    0x00007fff874d0e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cfb8f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cfbbfb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff72717778  rbx: 0x0000600002242af0  rcx: 0x0000000000000001  rdx: 0x0000000000000001
      rdi: 0x0000600002242af0  rsi: 0x00006080004097e8  rbp: 0x00007fff5fbff380  rsp: 0x00007fff5fbff378
       r8: 0x0000000000000001   r9: 0x0000000000000001  r10: 0x00007fff903f14ae  r11: 0x00007fff8cec56c6
      r12: 0x000060800145f350  r13: 0x00006080004097e0  r14: 0x0000000000000001  r15: 0x00007fff5fbff4b0
      rip: 0x00007fff72717818  rfl: 0x0000000000010206  cr2: 0x00007fff72717818
    Logical CPU:
    1
    Error Code: 
    0x00000015
    Trap Number:
    14
    Binary Images:
    0x100000000 -   
    0x1026b5fff +com.adobe.Photoshop (12.0 - 12.0x20100407.r.1103] [12.0) <B69D89E5-01DD-C220-48B1-E129D0574536> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    0x103295000 -   
    0x10330dfef +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
    0x103323000 -   
    0x103329fff  org.twain.dsm (1.9.5 - 1.9.5) <E614CAAE-7B01-348B-90E4-DB3FD3D066A6> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x103331000 -   
    0x103341ff8 +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
    0x10334c000 -   
    0x103350fff  com.apple.agl (3.2.3 - AGL-3.2.3) <5358D6CD-D890-3D83-B0F3-1C96C0128430> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x103357000 -   
    0x10355dfef +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
    0x1035f0000 -   
    0x10379efef +com.adobe.owl (AdobeOwl version 3.0.91 - 3.0.91) <C36CA603-EFFB-2EED-6CEE-0B532CE052D2> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x103840000 -   
    0x103c70fef +AdobeMPS (1) <FA334142-5343-8808-7760-4318EB62AD51> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x103dca000 -   
    0x1040f5ff7 +AdobeAGM (1) <52E17D56-6E7A-A635-82ED-5DE1F3E5045D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1041c2000 -   
    0x1044eafe7 +AdobeCoolType (1) <9E03F47A-06A3-F1F4-AC4C-76F12FACC294> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x104582000 -   
    0x1045a3ff7 +AdobeBIBUtils (1) <F7150688-2C15-0F0C-AF24-93ED82FC321A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x1045b0000 -   
    0x1045dbff6 +AdobeAXE8SharedExpat (0) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x1045ed000 -   
    0x104731fef +WRServices (0) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x104778000 -   
    0x1047ddfff +aif_core (0) <12FA670E-05A8-1FCB-A7A2-AAE68728EA30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x1047f9000 -   
    0x10480ffff +data_flow (0) <9C5D39A6-D2A2-9B6A-8B64-D1B59396C112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x104827000 -   
    0x1048bdfff +image_flow (0) <B72AA922-0D68-D57E-96B1-2E009B0AD4AE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x104934000 -   
    0x104952fff +image_runtime (0) <32786637-C9BF-4CB6-2DF9-5D99220E00BE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x10496f000 -   
    0x104b9efff +aif_ogl (0) <615E7DF6-09B1-857A-74AC-E224A636BEE1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x104c7d000 -   
    0x104d10fff +AdobeOwlCanvas (1) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x104d30000 -   
    0x105079fef +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
    0x105209000 -   
    0x10538bfe7 +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
    0x10542d000 -   
    0x1057a5fff +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
    0x1058ef000 -   
    0x105a03fff +AdobeACE (1) <E359887D-1E7F-5E62-CB8D-37CE4DBFB4D8> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x105a28000 -   
    0x105a44fff +AdobeBIB (1) <7A792F27-42CC-2DCA-D5DF-88A2CE6C2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x105a4e000 -   
    0x105ab8ff7 +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
    0x105aeb000 -   
    0x105bbeffb +AdobeJP2K (0) <465D1693-BE79-590E-E1AA-BAA8061B4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x105bde000 -   
    0x105be2ff8 +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
    0x105be6000 -   
    0x105c5dfff +FileInfo (0) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x105c7e000 -   
    0x105cdcffd +AdobeXMP (0) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x105cea000 -   
    0x106185fff +com.nvidia.cg (2.2.0006 - 0) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
    0x10670b000 -   
    0x106761feb +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
    0x1067a6000 -   
    0x1067cbffe +adobepdfsettings (1) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
    0x106805000 -   
    0x10680affd +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
    0x10680f000 -   
    0x1069aafff +com.adobe.PlugPlug (2.0.0.746 - 2.0.0.746) <CB23C5AA-0E4B-182B-CB88-57DD32893F92> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x106a52000 -   
    0x106a6bfeb +libtbb.dylib (0) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
    0x106a7c000 -   
    0x106a82feb +libtbbmalloc.dylib (0) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
    0x106a89000 -   
    0x106a91ff3 +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
    0x106f17000 -   
    0x106f19ff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x106fd9000 -   
    0x106ff5fff  libJapaneseConverter.dylib (61) <94EF6A2F-F596-3638-A3DC-CF03567D9427> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x106ffa000 -   
    0x106ffbfff  libCyrillicConverter.dylib (61) <AA2B224F-1A9F-30B9-BE11-633176790A94> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x109673000 -   
    0x1096e3ff6 +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
    0x1098a3000 -   
    0x1098c4ff7  libKoreanConverter.dylib (61) <22EEBBDB-A2F2-3985-B9C7-53BFE2B02D08> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x1098c9000 -   
    0x1098d8fff  libSimplifiedChineseConverter.dylib (61) <F5827491-A4E3-3471-A540-8D1FE241FD99> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x1098dc000 -   
    0x1098eefff  libTraditionalChineseConverter.dylib (61) <A182514D-426F-3D5F-BA69-4C4A4680ECB8> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x109912000 -   
    0x10991afff +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
    0x109968000 -   
    0x10996ffff +Enable Async IO (???) <9C98DC9E-5974-FE5D-75C3-16BC4738DCC8> /Applications/Adobe Photoshop CS5/*/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x10c0fa000 -   
    0x10c103fff +FastCore (???) <F1D1C94D-4FE1-F969-6FC2-8D81837CA5E1> /Applications/Adobe Photoshop CS5/*/FastCore.plugin/Contents/MacOS/FastCore
    0x10c110000 -   
    0x10c173ff3 +MMXCore (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/*/MMXCore.plugin/Contents/MacOS/MMXCore
    0x10c1f9000 -   
    0x10c264ff0 +MultiProcessor Support (???) <1334B570-C713-3767-225F-3C1CBA1BF37C> /Applications/Adobe Photoshop CS5/*/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x10cd1a000 -   
    0x10cdbdff7  ColorSyncDeprecated.dylib (426) <1EBD0729-A174-3EA5-B226-DE63C2E89D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x10e1a0000 -   
    0x10e1bcff7 +MeasurementCore (???) <0E3BE9B3-FF3D-78A6-38EC-5CB0828B80EB> /Applications/Adobe Photoshop CS5/*/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
    0x10e400000 -   
    0x10e65cfef +com.adobe.PSAutomate (12.0 - 12.0) <35AEF3A8-2E64-71D1-39ED-A34760CAAC29> /Applications/Adobe Photoshop CS5/*/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
    0x10e872000 -   
    0x10e916ffb +com.adobe.AdobeExtendScript (ExtendScript 4.1.23 - 4.1.23.7573) <332E7D8D-BF42-3177-9BC5-033942DE35E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/a/AdobeExtendScript
    0x10e978000 -   
    0x10ea18fef +com.adobe.AdobeScCore (ScCore 4.1.23 - 4.1.23.7573) <53DD7281-5B59-7FF5-DB57-C9FD60E524C7> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/a/AdobeScCore
    0x10ea9e000 -   
    0x10eabeffb +com.adobe.ape (adbeapecore version 3.1.65.7508 - 3.1.65.7508) <284C86BE-ACD8-31DD-E58D-544F581BC93B> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x10eacb000 -   
    0x10eaccff0  ATSHI.dylib (363.3) <236B636F-A8E9-37A9-BEF0-7FE68BC58436> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x10ead1000 -   
    0x10ead5ffd  libFontRegistryUI.dylib (127) <57DE4E73-B65B-3712-9815-81018E72501A> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libFontRegistryUI.dylib
    0x10f43e000 -   
    0x10f43effb +cl_kernels (???) <E87DA5FC-4C91-4C5C-9106-7EB7F8BB4CA6> cl_kernels
    0x10f5a4000 -   
    0x10f5a8ff7  libgermantok.dylib (14) <33B11365-E59E-38C1-952E-AFFFEFEE427F> /usr/lib/libgermantok.dylib
    0x1102ff000 -   
    0x110327fef +ServiceManager-Launcher.dylib (1) <4608E5E7-7F22-A4FF-527C-E97EA339FCCC> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
    0x110337000 -   
    0x110342fff  libGPUSupport.dylib (9.6) <039FC0EF-1B2C-3465-907B-A1856DCF5ADF> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport .dylib
    0x1104e5000 -   
    0x1104e9ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.0 - 2.6.0f1) <82D2F703-F961-3298-B06F-14B772D23C7B> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x110f00000 -   
    0x110fe6fef  unorm8_bgra.dylib (2.3.58) <6E7397EF-CC78-3C15-8B21-05E7FB47F645> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra .dylib
    0x113460000 -   
    0x11349dfeb +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
    0x116800000 -   
    0x116f4aff7  libclh.dylib (4.0.3 - 4.0.3) <5FAE3A43-C0DC-340F-B94A-2E3E2A767619> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x145165000 -   
    0x145facfcf +com.adobe.adobeswfl (2.0.0.7489) <DBD38111-48D6-C031-EF50-D034C94ED38B> /Library/Application Support/Adobe/*/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/AdobeSWFL
    0x123440000000 -
    0x12344086dfff  com.apple.GeForceTeslaGLDriver (8.24.11 - 8.2.4) <AA787258-3655-3558-AC34-C5834A007A39> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/GeForceTeslaGLDrive r
    0x7fff6c486000 -
    0x7fff6c4b9817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
    0x7fff82216000 -
    0x7fff8237cfff  libGLProgrammability.dylib (9.6) <8807FAD2-11E2-3293-89D8-397B87334138> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x7fff8237d000 -
    0x7fff823f0fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff823f1000 -
    0x7fff8257eff7  GLEngine (9.6) <51D58F76-B9B3-3B4F-B65A-F6D213C2EED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
    0x7fff8257f000 -
    0x7fff82588fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff825d9000 -
    0x7fff82643ff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff82644000 -
    0x7fff8266dfff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x7fff826a4000 -
    0x7fff826aaff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff826ab000 -
    0x7fff826b4fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x7fff826bf000 -
    0x7fff826e3fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x7fff826e4000 -
    0x7fff8273fffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x7fff828ff000 -
    0x7fff82a40fff  com.apple.QTKit (7.7.3 - 2826.17) <ADA1EF77-57D2-3E7E-8526-8F0B732C1218> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff82a51000 -
    0x7fff82a9dffe  com.apple.CoreMediaIO (407.0 - 4561) <BC8222A6-516C-380C-AB7D-DE78B23574DC> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff82a9e000 -
    0x7fff82ac5ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    0x7fff82ac6000 -
    0x7fff82af5ff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff82f45000 -
    0x7fff82f61fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x7fff82f62000 -
    0x7fff82f67fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x7fff82f68000 -
    0x7fff82f74ff7  com.apple.HelpData (2.1.4 - 90) <BEA1C549-40D3-35BF-9204-CB679FCB0648> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff82f75000 -
    0x7fff82f76ff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff82f77000 -
    0x7fff82f89fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x7fff82fb8000 -
    0x7fff830e8ff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x7fff830e9000 -
    0x7fff830f3ff7  libcsfde.dylib (380) <A3673EC2-5B81-3190-9BA5-F27013118EC6> /usr/lib/libcsfde.dylib
    0x7fff830f4000 -
    0x7fff83174fff  com.apple.CoreSymbolication (3.0 - 141) <DC9F84AA-9BD0-322B-83C3-FDC1FA771F37> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x7fff83194000 -
    0x7fff83194fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff831b4000 -
    0x7fff83202fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x7fff83203000 -
    0x7fff83248fff  libcurl.4.dylib (78.90.1) <818543D6-0CCE-3F18-9BF1-4D18B81018F3> /usr/lib/libcurl.4.dylib
    0x7fff83249000 -
    0x7fff83275ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdminis tration
    0x7fff83276000 -
    0x7fff83decfff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff83e2f000 -
    0x7fff83f1efff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x7fff83f1f000 -
    0x7fff84010ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x7fff84016000 -
    0x7fff8402fff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff84056000 -
    0x7fff8406eff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x7fff84075000 -
    0x7fff845e5fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff845e6000 -
    0x7fff847cbfff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff848f4000 -
    0x7fff848f5ff7  libSystem.B.dylib (1197.1.1) <5292BF21-9406-32D5-8BB3-7DD02C672FA0> /usr/lib/libSystem.B.dylib
    0x7fff848f6000 -
    0x7fff8491afff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
    0x7fff8491b000 -
    0x7fff84a89ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x7fff84a8a000 -
    0x7fff84a9affb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
    0x7fff84a9b000 -
    0x7fff84ee9fff  com.apple.VideoToolbox (1.0 - 1273.49) <27177077-9107-3E06-ADAD-92B80E80CDCD> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff84eea000 -
    0x7fff84ef4ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff84f52000 -
    0x7fff84f6dff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x7fff84f6e000 -
    0x7fff84f70fff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff84f71000 -
    0x7fff84f77fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x7fff854c6000 -
    0x7fff854c7ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
    0x7fff854c8000 -
    0x7fff85664ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff85665000 -
    0x7fff8566fff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff85670000 -
    0x7fff8567dfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff8567e000 -
    0x7fff8574ffff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x7fff85828000 -
    0x7fff85c09ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x7fff85c0a000 -
    0x7fff85c55fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff85c56000 -
    0x7fff85d06ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x7fff85d07000 -
    0x7fff85d07fff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff85d08000 -
    0x7fff85d40ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x7fff85d41000 -
    0x7fff85d71fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff85d72000 -
    0x7fff85d7bff7  libcldcpuengine.dylib (2.3.58) <C8785704-6195-3129-86CA-20F0F3C20F15> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dyli

  • Why does "Edit In..." sometimes not connect to Photoshop?

    Why does "Edit In..." sometimes refuse not open the file(s) in Photoshop?  This happens with any of the functions from LR5 to Photoshop CC, on MacOS 10.7.  Usually works again after restart, which sounds like a memory issure or something like that. 

    Not sure why, not without more details.
    Is Wi-Fi turned on?  Does the iPhone 5 see the network? 
    What troubleshooting steps from http://support.apple.com/kb/TS1398 have you tried so far?

  • Mac OSX Lion: Why does PS CS6 BETA stop responding after attempting to import pdf?

    Mac OSX Lion: Why does PS CS6 BETA stop responding after attempting to import single pdf or multiple pdfs? frequently happens(2/3 times)

    Can you provide any more information about the files that are causing the problems? Are these particularly large files? Many pages or images? Have you opened these files in Photoshop CS5, or other versions of Photoshop?
    What do you see when you try to import these PDFs? Do you get the PDF Import dialog, allowing you to select pages or images from the PDF? Is so, is it hanging when you click OK or at another time?
    Any more details about the problem or other info (as well as sample files) you can provide, the easier it will be for us to help identify the cause of your problems.
    Paul

  • Why does my iphoto slideshow turn blue after exporting?

    why does my iphoto slideshow turn blue after exporting?

    There are 9 different versions of iPhoto and they run on 9 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • Why am I still getting this message after logging in - This computer is no longer authorized for apps that are installed on the iPhone "Myron Liptzin's iPhone". Would you like to authorize this computer for items purchased from the iTunes Store?

    why am I still getting this message after logging in?  "This computer is no longer authorized for apps that are installed on the iPhone “*************s iPhone”. Would you like to authorize this computer for items purchased from the iTunes Store?"  - after I have logged in and get the message that the computer is already authorized!!!?? - and then the above message pops up again?

    Click here and follow the instructions.
    (71175)

  • Why does my camera get purple streaks and then freezes

    why does my camera get purple streaks and then freezes

    My friend and I both work in a hospital and we go in out of signal continuously through out the day.  Our problem is so bad that by mid afternoon our phone batteries are down to 20% as the phone is continuously searching for signal.  Im on EE and their only advice was to reset the network settings, thats fine when you only have to do it once but Im doing it up to 20 times in 1 day.  It makes me hate my iphone for the first time in 5 years.

  • Why does my phone get hot at time's?

    It doesn't happen every day, put there are times my phone gets hot even when I'm not using it then the battery drains fast and I have to charge it again.  It's not the battery area that gets hot.

    There is no damage to my phone. This is the second Samsung Galaxy S5 that I have received.  The first one did the same thing, then went dead.  I only charge my phone at night when I go to bed and unplug it in the morning.  When it does get hot, for some unknown reason, I have to charge it again during the day just to have cell phone access.  It doesn't happen on a daily basis.  It's just concerning as to why the Samsung Galaxy S5 is doing this.  Teffanie M Stark
          From: Verizon Wireless Customer Support <[email protected]>
    To: Teffanie Stark <[email protected]>
    Sent: Wednesday, October 29, 2014 2:49 PM
    Subject:  - Why does my phone get hot at time's?
    #yiv9730055397 img
    |  
    |
      | 
    A message from the Verizon Wireless Community
      |
    |   |
    Why does my phone get hot at time's?
    created by Verizon Wireless Customer Support in Android - View the full discussion                  I know this is not a good experience with your device starky69. Is there any damage to the device? How long have you had the phone? Which phone do you own? Do you keep the phone on the charger at all times when its not being used?
    Kinquana_VZW
    Follow us on Twitter @vzwsupport    Reply to this message by replying to this email -or- go to the message on Verizon Wireless Community Start a new discussion in Android by email or at Verizon Wireless Community


    © 2014 Verizon Wireless
    Verizon Wireless
    One Verizon Way
    Mail Code: 180WVB
    Basking Ridge, NJ 07920
    Not interested in these emails anymore, or want to change how often they come? Update your email preferences by visiting https://community.verizonwireless.com/user-preferences!input.jspa.
      |
    We respect your privacy. Please review our privacy policy for more information
    about click activity with Verizon Wireless and links included in this email.
      |

    |

  • Why oracle don't get clear error message? What is this symbols ???????

    jdk1.6
    oracle jdc driver - ojdbc14.jar
    when oracle throw exception I get somethin like this:
    [02 Jul 2010 20:10:36.145] com.mycompany.myproject.db.OracleStrategy.insertM2Document(OracleStrategy.java:147) ERROR:
    ? ??????? ??????????? ???????? IN ??? OUT:: 62
    java.sql.SQLException: ? ??????? ??????????? ???????? IN ??? OUT:: 62
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
    at oracle.jdbc.driver.OraclePreparedStatement.processCompletedBindRow(OraclePreparedStatement.java:1729)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3365)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3454)
    at com.mycompany.myproject.db.OracleStrategy.insertToDB(OracleStrategy.java:50)
    at com.mycompany.myproject.db.OracleStrategy.insertM2Document(OracleStrategy.java:139)
    at com.mycompany.myproject.db.DBManagerContext.insertM2Document(DBManagerContext.java:129)
    at com.mycompany.myproject.util.M2EIManager.importToOutM2PackDocuments(M2EIManager.java:154)
    at com.mycompany.myproject.views.OutgoingTabView.actionPerformed(OutgoingTabView.java:104)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
    what is this symbols ??????. Why oracle don't get clear error message?

    The wrong character set encoding. Either by reading from the db or by displaying the error.

  • Why does auto fill show up sometimes on my GMail sign in page and sometimes it doesn't?

    Why does auto fill show up sometimes on my GMail sign in page and sometimes it doesn't? I am using Firefox 3.6.6 on a Windows Vista system.

    and have tried it on a mac desktop also - same problem.
    Try this on one of the Macs ...
    Open a Finder window. From the menu bar click Finder > Preferrences
    Select the General tab then select:  Show External Disks

Maybe you are looking for

  • Selective Deletion from Infocube Only (Not from Aggregates)

    Hi, For the Selective Deletion, i used the FM 'RSDRD_SEL_DELETION' in program. But this FM deletes the data first from Infocube then from aggregate.Because of this, deletion took more time to delete and adjust the Aggregate. I need an way in which i

  • Error Message when attempting to connect to server directory List View.

    I just transferred my entire Mac (User, Hard Drive Files, Network, Time & Date) from one MacBook Pro 2.4 Ghz to another MacBook Pro 2.4 Ghz machine. Everything seemed fine but the following. My computer connects to a Mac OS X Server (10.5.2) in our o

  • XBMC no longer recognizes IR commands

    Ever have one of those problems where you just *know* you're gonna feel stupid at the end? So I pulled a pacman -Syu just a week or so ago, after not having done so for about a month, on my XBMC box.  The update didn't upgrade XBMC or lirc -- and yet

  • How to keep superscript format when generating a table of contents

    Hi, I have a superscript ® in a title in a document that needs to be brought in the Table of contents. When I do generate the TOC, I cannot keep the superscript format in the TOC. I could cheat and replace it manually, but there has to be a way it st

  • Select from table without specifying the column list.

    I want to reference the columns in select list without specifing the column name of a table. For example i am having a table called emp(id number,name varchar2(30)). I want to write a query which will display the name of the employees. But i don't wa