Can anyone solve this error? 0xc 19a0013

can anyone solve this error? 0xc 19a0013 my black ink cartridge will not print and its full. i've cleaned the heads and still no black.  please help.

Hello family1023, and welcome to the HP Forums, I hope you enjoy your experience!
I see you are experiencing print system issues.  I would love to try and help you, but I do need a little information first. I am linking a few HP Support documents below that will show you how to find your product number. Also, please include which operating system you are using. Also, if you're using Windows, please include whether your operating system is 32-bit or 64-bit. With this information and the product number we can provide you with accurate information.
How Do I Find My Model Number or Product Number?
Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
Which Windows operating system am I running?
Is the Windows Version on My Computer 32-bit or 64-bit?
Please let me know what you find, and thanks for posting on the HP Forums!
Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
Jamieson
I work on behalf of HP
"Remember, I'm pulling for you, we're all in this together!" - Red Green.

Similar Messages

  • Can anyone solve this error??

    I have following files
    1)
    CaptureApplet.html
    <APPLET CODE=CaptureApplet WIDTH=320 HEIGHT=300>
    </APPLET>
    import java.applet.*;
    import java.awt.*;
    import java.net.*;
    import java.util.*;
    import javax.media.*;
    import javax.media.protocol.FileTypeDescriptor;
    import javax.media.protocol.DataSource;
    import javax.media.control.StreamWriterControl;
    import javax.media.format.*;
    import java.io.IOException;
    public class CaptureApplet extends Applet implements ControllerListener
         CaptureDeviceInfo di = null;
         Processor player = null;
         StateHelper sh = null;
         DataSink filewriter = null;
         public void init()
              Vector deviceList = CaptureDeviceManager.getDeviceList(new AudioFormat(AudioFormat.LINEAR,8000.0,8,1,Format.NOT_SPECIFIED,AudioFormat.SIGNED,8,Format.NOT_SPECIFIED,Format.byteArray));
              if (deviceList.size() > 0)
                   di = (CaptureDeviceInfo)deviceList.firstElement();
              else
                   // Exit if we can't find a device that does linear,
                   // 44100Hz, 16 bit,
                   // stereo audio.
                   System.exit(-1);
              try
                   player = Manager.createProcessor(di.getLocator());
                   sh = new StateHelper(player);
              catch (IOException e)
                   System.exit(-1);
              catch (NoProcessorException e)
                   System.exit(-1);
              // Configure the processor
              if (!sh.configure(10000))
                   System.exit(-1);
              // Set the output content type and realize the processor
              player.setContentDescriptor(new FileTypeDescriptor(FileTypeDescriptor.WAVE));
              if (!sh.realize(10000))
                   System.exit(-1);
              // get the output of the processor
              DataSource source = player.getDataOutput();
              // create a File protocol MediaLocator with the location of the
              // file to which the data is to be written
              MediaLocator dest = new MediaLocator("file://foo.wav");
              // create a datasink to do the file writing & open the sink to
              // make sure we can write to it.
              try
                   filewriter = Manager.createDataSink(source, dest);
                   filewriter.open();
              catch (NoDataSinkException e)
                   System.exit(-1);
              catch (IOException e)
                   System.exit(-1);
              catch (SecurityException e)
                   System.exit(-1);
              // if the Processor implements StreamWriterControl, we can
              // call setStreamSizeLimit
              // to set a limit on the size of the file that is written.
              StreamWriterControl swc = (StreamWriterControl)player.getControl("javax.media.control.StreamWriterControl");
              //set limit to 5MB
              if (swc != null)
                   swc.setStreamSizeLimit(5000000);
              // now start the filewriter and processor
         public void start()
              try
                   filewriter.start();
              catch (IOException e)
                   System.exit(-1);
              // Capture for 5 seconds
              sh.playToEndOfMedia(5000);
              sh.close();
              // Wait for an EndOfStream from the DataSink and close it...
              filewriter.close();
         public synchronized void controllerUpdate(ControllerEvent event)
    }2) StateHelper.java
    import javax.media.*;
    public class StateHelper implements javax.media.ControllerListener {
         Player player = null;
         boolean configured = false;
         boolean realized = false;
         boolean prefetched = false;
         boolean eom = false;
         boolean failed = false;
         boolean closed = false;
         public StateHelper(Player p) {
          player = p;
          p.addControllerListener(this);
         public boolean configure(int timeOutMillis) {
          long startTime = System.currentTimeMillis();
          synchronized (this) {
              if (player instanceof Processor)
                ((Processor)player).configure();
              else
                return false;
              while (!configured && !failed) {
                try {
                    wait(timeOutMillis);
                } catch (InterruptedException ie) {
                if (System.currentTimeMillis() - startTime > timeOutMillis)
                    break;
          return configured;
         public boolean realize(int timeOutMillis) {
          long startTime = System.currentTimeMillis();
          synchronized (this) {
              player.realize();
              while (!realized && !failed) {
                try {
                    wait(timeOutMillis);
                } catch (InterruptedException ie) {
                if (System.currentTimeMillis() - startTime > timeOutMillis)
                    break;
          return realized;
         public boolean prefetch(int timeOutMillis) {
          long startTime = System.currentTimeMillis();
          synchronized (this) {
              player.prefetch();
              while (!prefetched && !failed) {
                try {
                    wait(timeOutMillis);
                } catch (InterruptedException ie) {
                if (System.currentTimeMillis() - startTime > timeOutMillis)
                    break;
          return prefetched && !failed;
         public boolean playToEndOfMedia(int timeOutMillis) {
          long startTime = System.currentTimeMillis();
          eom = false;
          synchronized (this) {
              player.start();
              while (!eom && !failed) {
                try {
                    wait(timeOutMillis);
                } catch (InterruptedException ie) {
                if (System.currentTimeMillis() - startTime > timeOutMillis)
                    break;
          return eom && !failed;
         public void close() {
          synchronized (this) {
              player.close();
              while (!closed) {
                try {
                    wait(100);
                } catch (InterruptedException ie) {
          player.removeControllerListener(this);
         public synchronized void controllerUpdate(ControllerEvent ce) {
          if (ce instanceof RealizeCompleteEvent) {
              realized = true;
          } else if (ce instanceof ConfigureCompleteEvent) {
              configured = true;
          } else if (ce instanceof PrefetchCompleteEvent) {
              prefetched = true;
          } else if (ce instanceof EndOfMediaEvent) {
              eom = true;
          } else if (ce instanceof ControllerErrorEvent) {
              failed = true;
          } else if (ce instanceof ControllerClosedEvent) {
              closed = true;
          } else {
              return;
          notifyAll();
    }When I am running the Applet it crashes.
    Can anyone tell me what the problem is.
    Using JCreater and even commandline both gave same error as below
    java.security.AccessControlException: access denied (java.lang.RuntimePermission exitVM.-1)
        at java.security.AccessControlContext.checkPermission(AccessControlContext.java:323)
        at java.security.AccessController.checkPermission(AccessController.java:546)
        at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
        at java.lang.SecurityManager.checkExit(SecurityManager.java:744)
        at java.lang.Runtime.exit(Runtime.java:88)
        at java.lang.System.exit(System.java:906)
        at CaptureApplet.init(CaptureApplet.java:34)
        at sun.applet.AppletPanel.run(AppletPanel.java:417)
        at java.lang.Thread.run(Thread.java:619)

    >
    Applets do not have permission to terminate the JVM. I don't write applets, so I don't know what the proper approach is to "end" an applet, ...>You might
    a) Add a new component to a CardLayout that displays the problem.
    b) Pop a JDialog or JOptionPane with same, and/or
    c) showDocument(errorpage.html)
    Edit 1:
    Note that an applet will need to be signed and trusted by the end user, before it has any chance of 'capturing' anything. Even as a fully trusted applet, it will still not be able to System.exit(int).
    Edited by: AndrewThompson64 on Apr 22, 2009 7:38 PM

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • How can I solve this error message? Some of your photos, including the photo "IMG_0374.jpg", were not copied to the iPad "(my name's) iPad" because they cannot be displayed on your iPad.

    how can I solve this error message? "Some of your photos, including the photo “IMG_0374.jpg”, were not copied to the iPad “(my name’s) iPad” because they cannot be displayed on your iPad."
    There were 273 photos in the event syncing from my Mac, but only the last 103 made it to the ipad. Most of the photos were taken by an iphone. I would appreciate any thoughts or insights - thanks.

    Adrian-
    That error message suggests the photo is somehow corrupt.
    Do you have the Apple Camera Connection Kit?  You can set up a USB thumb drive with MS-DOS FAT-32 format and copy your photos to it into a folder named DCIM.  Assuming they have an 8 character plus suffix name, the iPad will recognize them and give you the option of transferring them via the Kit's USB adapter.
    Once they are transferred, you can find out if there is a problem with any.
    Fred

  • Can anyone solve this puzzle using SQL?

    Can anyone solve this puzzle using SQL?
    http://www.greylabyrinth.com/puzzle/puzzle182

    DylanB123 wrote:
    Took me almost 4 min just to get all the permutations/combinations using only dual. May try out the full thing when traffic does down on the DB.Well this looks like it gives the correct answer...
    SQL> select * from disks;
          DISK COLOUR
             1 WGYBRK
             2 WBYGKR
             3 WBGRKY
             4 WRGYKB
             5 WKGBYR
             6 WBKYGR
             7 WGKBYR
    7 rows selected.
    Elapsed: 00:00:00.04
    SQL> select   disk_perms,
      2           offset_1,
      3           offset_2,
      4           offset_3,
      5           offset_4,
      6           offset_5,
      7           offset_6,
      8           offset_7
      9    from   (select   permutations disk_perms
    10               from   (    select   replace (sys_connect_by_path (n, ','), ',')
    11                                       permutations
    12                             from   (    select   to_char (level) n
    13                                           from   dual
    14                                     connect by   level <= 7) yourtable
    15                       connect by   nocycle n != prior n)
    16              where   length (permutations) = 7) disk_permutations
    17           cross join
    18           (select   tab1.c offset_1,
    19                      tab2.c offset_2,
    20                      tab3.c offset_3,
    21                      tab4.c offset_4,
    22                      tab5.c offset_5,
    23                      tab6.c offset_6,
    24                      tab7.c offset_7
    25             from   (select   level - 1 as c from   dual connect by   level <= 6) tab1,
    26                    (select   level - 1 as c from   dual connect by   level <= 6) tab2,
    27                    (select   level - 1 as c from   dual connect by   level <= 6) tab3,
    28                    (select   level - 1 as c from   dual connect by   level <= 6) tab4,
    29                    (select   level - 1 as c from   dual connect by   level <= 6) tab5,
    30                    (select   level - 1 as c from   dual connect by   level <= 6) tab6,
    31                    (select   level - 1 as c from   dual  connect by   level <= 6) tab7) offset_combinations
    32           join disks d1 on d1.disk = substr(disk_perms,1,1)
    33           join disks d2 on d2.disk = substr(disk_perms,2,1)
    34           join disks d3 on d3.disk = substr(disk_perms,3,1)
    35           join disks d4 on d4.disk = substr(disk_perms,4,1)
    36           join disks d5 on d5.disk = substr(disk_perms,5,1)
    37           join disks d6 on d6.disk = substr(disk_perms,6,1)
    38           join disks d7 on d7.disk = substr(disk_perms,7,1)
    39    where substr( substr(d6.colour,offset_6+1)||substr(d6.colour,decode(offset_6,0,7,1),offset_1), 3,1) = substr( substr(d7.colour,offset_7+1)||substr(d7.colour,decode(offset_7,0,7,1),offset_7), 5,1)
    40    and   substr( substr(d5.colour,offset_5+1)||substr(d5.colour,decode(offset_5,0,7,1),offset_5), 2,1) = substr( substr(d7.colour,offset_7+1)||substr(d7.colour,decode(offset_7,0,7,1),offset_7), 5,1)
    41    and   substr( substr(d5.colour,offset_5+1)||substr(d5.colour,decode(offset_5,0,7,1),offset_5), 1,1) = substr( substr(d6.colour,offset_6+1)||substr(d6.colour,decode(offset_5,0,7,1),offset_5), 4,1)
    42    and   substr( substr(d4.colour,offset_4+1)||substr(d4.colour,decode(offset_4,0,7,1),offset_4), 1,1) = substr( substr(d7.colour,offset_7+1)||substr(d7.colour,decode(offset_7,0,7,1),offset_7), 4,1)
    43    and   substr( substr(d4.colour,offset_4+1)||substr(d4.colour,decode(offset_4,0,7,1),offset_4), 6,1) = substr( substr(d5.colour,offset_5+1)||substr(d5.colour,decode(offset_5,0,7,1),offset_5), 3,1)
    44    and   substr( substr(d3.colour,offset_3+1)||substr(d3.colour,decode(offset_3,0,7,1),offset_3), 6,1) = substr( substr(d7.colour,offset_7+1)||substr(d7.colour,decode(offset_7,0,7,1),offset_7), 3,1)
    45    and   substr( substr(d3.colour,offset_3+1)||substr(d3.colour,decode(offset_3,0,7,1),offset_3), 5,1) = substr( substr(d4.colour,offset_4+1)||substr(d4.colour,decode(offset_4,0,7,1),offset_4), 2,1)
    46    and   substr( substr(d2.colour,offset_2+1)||substr(d2.colour,decode(offset_2,0,7,1),offset_2), 5,1) = substr( substr(d7.colour,offset_7+1)||substr(d7.colour,decode(offset_7,0,7,1),offset_7), 2,1)
    47    and   substr( substr(d2.colour,offset_2+1)||substr(d2.colour,decode(offset_2,0,7,1),offset_2), 4,1) = substr( substr(d3.colour,offset_3+1)||substr(d3.colour,decode(offset_3,0,7,1),offset_3), 1,1)
    48    and   substr( substr(d1.colour,offset_1+1)||substr(d1.colour,decode(offset_1,0,7,1),offset_1), 3,1) = substr( substr(d2.colour,offset_2+1)||substr(d2.colour,decode(offset_2,0,7,1),offset_2), 6,1)
    49    and   substr( substr(d1.colour,offset_1+1)||substr(d1.colour,decode(offset_1,0,7,1),offset_1), 4,1) = substr( substr(d7.colour,offset_7+1)||substr(d7.colour,decode(offset_7,0,7,1),offset_7), 1,1)
    50    and   substr( substr(d1.colour,offset_1+1)||substr(d1.colour,decode(offset_1,0,7,1),offset_1), 5,1) = substr( substr(d6.colour,offset_6+1)||substr(d6.colour,decode(offset_6,0,7,1),offset_6), 2,1)
    51  /
    DISK_PERMS
      OFFSET_1   OFFSET_2   OFFSET_3   OFFSET_4   OFFSET_5   OFFSET_6   OFFSET_7
    5172643
             5          0          3          2          5          4          2
    Elapsed: 00:00:03.90
    SQL>If you take the positions as in
       1
    6   2
       7
    5   3
       4and the rotations (offsets) as anticlockwise based on my colour strings being in a clockwise order from the top.

  • What is this Configuration Error: 1  = I must reinstall the AI every time again and again and loose so much time! How can I solve this error?

    What is this Configuration Error: 1  = I must reinstall the AI every time again and again and loose so much time! How can I solve this error?
    please answer on my email too
    [email protected]

    Nobody can tell you anything without proper system info or other technical details. The simply answer probably is that you are running your system with insufficient user privileges and system restore or some security tools are blocking stuff/ erasing your install.
    Mylenium

  • Hi i got a mac mini but when i connect it to my smartax mt882 modem via ethernet it says device not connected can anyone solve this issue it work fine with the usb connection but the ethernet is giving me problems plz help

    hi i got a mac mini but when i connect it to my smartax mt882 modem via ethernet it says device not connected can anyone solve this issue it work fine with the usb connection but the ethernet is giving me problems plz help

    Hello, give this a try...
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.5, 10.6, 10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x/10.8.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    For 10.5/10.6/10.7/10.8, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    (There may be better or faster DNS numbers in your area, but these should be a good test).
    Click OK.

  • I have set a passcode for my iphone and later I forgot it, and I tried it so many times but it was not correct now the iphone is disable it doesn't work in tune, can anyone solve this problem??

    I have set a passcode for my iphone and later I forgot it, and I tried it so many times but it was not correct now the iphone is disable it doesn't work in tune, can anyone solve this problem??

    You can solve this problem. Just follow these instructions:
    http://support.apple.com/kb/ht1212

  • Can anyone solve this query requirement

    Would like to know if anyone solved this situation in the query before. If yes, or If you have any ideas, could you please share it with me.
    Below is the scenario.
    Cube data: We have a number of 'FACILIIES'. 'Surveys' are conducted for each facility once in every six to 18 months. No fixed time intervals though. And surveys are numbered sequencially, always in the increasing order with respect to time. each survey has a 'survey date'. and a keyfigure 'Count'.                                                  
    DATA IN THE CUBE AS OF 4/30/2005               
    FACILITY...SURVEYID...SURVEYDATE...COUNTKEYFIGURE     
    525...         121...  1/6/2004...         6     
    624...         132...  2/20/2004...    7     
    525...         138...  10/1/2004...    5     
    624...         140...  9/15/2004...    4     
    525...         157...  3/10/2005...    8     
    624...         245...  4/15/2005...    6     
    If the query is run for the above data, is shouls be displayed like this.               
    REPORT AS OF 04/30/2005                    
    FACILITY...LATESTSURVEY...LATESTCOUNT...PREVIOUSSURVEY PRECOUNT
    525... 157... 8... 138... 5
    624... 245... 6... 140... 4
    Once the data is updated further, this is the data in the Cube as of 10/30/2005
    DATA IN THE CUBE AS OF 10/30/2005          
    FACILITY...SURVEYID...SURVEYDATE...COUNTKEYFIGURE     
    525...          121...     1/6/2004...     6     
    624...          132...     2/20/2004...     7     
    525...          138...     10/1/2004...     5     
    624...          140...     9/15/2004...     4     
    525...          157...     3/10/2005...     8     
    624...          245...     4/15/2005...     6     
    525...       290...     8/20/2005...     9     
    624...          312...     10/15/2005...     4     
    REPORT AS OF 04/30/2005                         
    FACILITY LATESTSUREY LATESTCOUNT PREVIOUSSURVEY PRECOUNT
    525...          290...     9...          157...     8     
    624...          312...     4...          245...     6     
    Dynamically, the latest survey and previous survey has to be determined. Any ideas on how to solve... We alrady thought of making changes to the Survey Master data. Any thing that can be done in the query itself?
    thanks
    Gova
    (I could not improve the display format, so I used '...' to separate the fields. may be SDN should look into improving the display format)

    Hi Gova..
    We too had a similar requirement..to get the previous records..
    We had to end up having to populate the Previous record in a seperate field on the same line..
    I think you are on the right path to modify the master data and have the previous survey and previous count populated on every line..
    Good Luck
    Ashish..

  • Photoshop CS4 Crashing-Can anyone understand this error report?

    My program keeps crashing when I do mostly anything. I get this error report, but it's all gibberish to me. Can anyone tell me what it's saying?
    Thanks,
    S
    Error Report:
    Process:         Adobe Photoshop CS4 [975]
    Path:            /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    Identifier:      com.adobe.Photoshop
    Version:         11.0.2 [11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch]] (11.0.2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [149]
    Responsible:     Adobe Photoshop CS4 [975]
    User ID:         501
    Date/Time:       2014-07-07 06:55:46.705 -0400
    OS Version:      Mac OS X 10.9.3 (13D65)
    Report Version:  11
    Anonymous UUID:  3A4AFA39-7E87-94AC-5944-409EC2452791
    Sleep/Wake UUID: B8B69405-9231-4368-AE3D-74BCDF90C828
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000bc55b28
    VM Regions Near 0xbc55b28:
        MALLOC_TINY            000000000bb00000-000000000bc00000 [ 1024K] rw-/rwx SM=PRV 
    --> __TEXT                 000000000bc00000-000000000bd01000 [ 1028K] r-x/rwx SM=COW  /Library/Application Support/Adobe/*/VersionCue.framework/Versions/A/VersionCue
        __DATA                 000000000bd01000-000000000bd38000 [  220K] rw-/rwx SM=COW  /Library/Application Support/Adobe/*/VersionCue.framework/Versions/A/VersionCue
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.QD                   0x90955d06 _SetDstBits32BGRA + 8
    1   com.apple.QD                   0x9094c02d DevFrameRect + 710
    2   com.apple.QD                   0x9094bd2c StdRectWithPort + 241
    3   com.apple.QD                   0x90956ba5 CallRect + 59
    4   com.apple.QD                   0x90956bdd FrameRect + 49
    5   com.adobe.Photoshop           0x000cdfb3 0x1000 + 839603
    6   com.adobe.Photoshop           0x00571179 0x1000 + 5702009
    7   com.adobe.Photoshop           0x00568ad0 0x1000 + 5667536
    8   com.adobe.Photoshop           0x003508c7 0x1000 + 3471559
    9   com.adobe.Photoshop           0x0006a963 0x1000 + 432483
    10  com.adobe.Photoshop           0x0006ae52 0x1000 + 433746
    11  com.adobe.Photoshop           0x000628f0 0x1000 + 399600
    12  com.adobe.Photoshop           0x0006a6e5 0x1000 + 431845
    13  com.adobe.Photoshop           0x00063c65 0x1000 + 404581
    14  com.adobe.Photoshop           0x00063dd3 0x1000 + 404947
    15  com.adobe.Photoshop           0x0006212f 0x1000 + 397615
    16  com.adobe.Photoshop           0x002205da 0x1000 + 2225626
    17  com.adobe.Photoshop           0x00220666 0x1000 + 2225766
    18  com.adobe.Photoshop           0x00003812 0x1000 + 10258
    19  com.adobe.Photoshop           0x00003739 0x1000 + 10041
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x994ff992 kevent64 + 10
    1   libdispatch.dylib             0x97234899 _dispatch_mgr_invoke + 238
    2   libdispatch.dylib             0x97234532 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x994ff046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9b468dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x9b46ccce start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib       0x9b46bfa3 pthread_cond_wait + 48
    3   com.adobe.amt.services         0x075aa552 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services         0x075a5995 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 115
    5   com.adobe.amt.services         0x075aa5b0 AMTThread::Worker(void*) + 20
    6   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib         0x994ff046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9b468dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x9b46ccce start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib         0x994f9fce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x93473071 MPWaitOnSemaphore + 104
    2   MultiProcessor Support         0x27791eff 0x27762000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    4   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    5   libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    6   libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib         0x994f9fce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x93473071 MPWaitOnSemaphore + 104
    2   MultiProcessor Support         0x27791eff 0x27762000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    4   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    5   libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    6   libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib         0x994f9fce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x93473071 MPWaitOnSemaphore + 104
    2   MultiProcessor Support         0x27791eff 0x27762000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    4   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    5   libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    6   libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib         0x994f9fce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x93473071 MPWaitOnSemaphore + 104
    2   MultiProcessor Support         0x27791eff 0x27762000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    4   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    5   libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    6   libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib         0x994f9fce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x93473071 MPWaitOnSemaphore + 104
    2   MultiProcessor Support         0x27791eff 0x27762000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    4   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    5   libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    6   libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib         0x994f9fce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x93473071 MPWaitOnSemaphore + 104
    2   MultiProcessor Support         0x27791eff 0x27762000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    4   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    5   libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    6   libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib         0x994f9fce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x93473071 MPWaitOnSemaphore + 104
    2   MultiProcessor Support         0x27791eff 0x27762000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    4   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    5   libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    6   libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x9b46bbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x934a6682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore 0x934a68a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore 0x93472cf2 MPWaitOnQueue + 199
    6   AdobeACE                       0x027c138d 0x2790000 + 201613
    7   AdobeACE                       0x027c0d85 0x2790000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    10  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    11  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x9b46bbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x934a6682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore 0x934a68a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore 0x93472cf2 MPWaitOnQueue + 199
    6   AdobeACE                       0x027c138d 0x2790000 + 201613
    7   AdobeACE                       0x027c0d85 0x2790000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    10  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    11  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x9b46bbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x934a6682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore 0x934a68a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore 0x93472cf2 MPWaitOnQueue + 199
    6   AdobeACE                       0x027c138d 0x2790000 + 201613
    7   AdobeACE                       0x027c0d85 0x2790000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    10  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    11  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x9b46bbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x934a6682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore 0x934a68a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore 0x93472cf2 MPWaitOnQueue + 199
    6   AdobeACE                       0x027c138d 0x2790000 + 201613
    7   AdobeACE                       0x027c0d85 0x2790000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    10  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    11  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x9b46bbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x934a6682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore 0x934a68a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore 0x93472cf2 MPWaitOnQueue + 199
    6   AdobeACE                       0x027c138d 0x2790000 + 201613
    7   AdobeACE                       0x027c0d85 0x2790000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    10  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    11  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x9b46bbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x934a6682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore 0x934a68a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore 0x93472cf2 MPWaitOnQueue + 199
    6   AdobeACE                       0x027c138d 0x2790000 + 201613
    7   AdobeACE                       0x027c0d85 0x2790000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    10  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    11  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x9b46bbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x934a6682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore 0x934a68a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore 0x93472cf2 MPWaitOnQueue + 199
    6   AdobeACE                       0x027c138d 0x2790000 + 201613
    7   AdobeACE                       0x027c0d85 0x2790000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x934732ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    10  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    11  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib         0x994fa0a6 mach_wait_until + 10
    1   libsystem_c.dylib             0x9970dc4a nanosleep + 366
    2   com.adobe.PSAutomate           0x382db1b1 ScObjects::Thread::sleep(unsigned int) + 143
    3   com.adobe.PSAutomate           0x382db211 ScObjects::Thread::wait(unsigned int) + 23
    4   com.adobe.PSAutomate           0x382cbdc6 ScObjects::BridgeTalkThread::run() + 332
    5   com.adobe.PSAutomate           0x382db4d3 ScObjects::Thread::go(void*) + 239
    6   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    7   libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    8   libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib         0x994ff046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9b468dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x9b46ccce start_wqthread + 30
    Thread 21:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib       0x9b46bfa3 pthread_cond_wait + 48
    3   data_flow                     0x03ba02b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                     0x03b9365b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                     0x03b96061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                     0x03b96bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                     0x03b9390b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                     0x03b95fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                     0x03ba1bc5 thread_proxy + 99
    10  libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    11  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    12  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib       0x9b46bfa3 pthread_cond_wait + 48
    3   data_flow                     0x03ba02b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                     0x03b9365b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                     0x03b96061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                     0x03b96bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                     0x03b9390b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                     0x03b95fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                     0x03ba1bc5 thread_proxy + 99
    10  libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    11  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    12  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib       0x9b46bfa3 pthread_cond_wait + 48
    3   data_flow                     0x03ba02b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                     0x03b9365b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                     0x03b96061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                     0x03b96bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                     0x03b9390b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                     0x03b95fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                     0x03ba1bc5 thread_proxy + 99
    10  libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    11  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    12  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib       0x9b46bfa3 pthread_cond_wait + 48
    3   data_flow                     0x03ba02b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                     0x03b9365b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                     0x03b96061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                     0x03b96bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                     0x03b9390b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                     0x03b95fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                     0x03ba1bc5 thread_proxy + 99
    10  libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    11  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    12  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib       0x9b46bfa3 pthread_cond_wait + 48
    3   data_flow                     0x03ba02b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                     0x03b9365b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                     0x03b96061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                     0x03b96bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                     0x03b9390b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                     0x03b95fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                     0x03ba1bc5 thread_proxy + 99
    10  libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    11  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    12  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib       0x9b46bfa3 pthread_cond_wait + 48
    3   data_flow                     0x03ba02b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                     0x03b9365b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                     0x03b96061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                     0x03b96bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                     0x03b9390b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                     0x03b95fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                     0x03ba1bc5 thread_proxy + 99
    10  libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    11  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    12  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 27:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib       0x9b46bfa3 pthread_cond_wait + 48
    3   data_flow                     0x03ba02b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                     0x03b9365b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                     0x03b96061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                     0x03b96bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                     0x03b9390b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                     0x03b95fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                     0x03ba1bc5 thread_proxy + 99
    10  libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    11  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    12  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib         0x994fe7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9b469d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib       0x9b46bfa3 pthread_cond_wait + 48
    3   data_flow                     0x03ba02b2 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   data_flow                     0x03b9365b void boost::condition::do_wait<boost::recursive_mutex>(boost::recursive_mutex&) + 51
    5   data_flow                     0x03b96061 boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks>::execute_task() volatile + 135
    6   data_flow                     0x03b96bba boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> >::run() + 232
    7   data_flow                     0x03b9390b boost::_bi::bind_t<void, boost::_mfi::mf0<void, boost::threadpool::detail::worker_thread<boost::threadpool::detail::pool_core<boost::thre adpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > >, boost::_bi::list1<boost::_bi::value<boost::shared_ptr<boost::threadpool::detail::worker_t hread<boost::threadpool::detail::pool_core<boost::threadpool::prio_task_func, boost::threadpool::prio_scheduler, boost::threadpool::static_size, boost::threadpool::resize_controller, boost::threadpool::wait_for_all_tasks> > > > > >::operator()() + 43
    8   data_flow                     0x03b95fd1 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 79
    9   data_flow                     0x03ba1bc5 thread_proxy + 99
    10  libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    11  libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    12  libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 29:
    0   libsystem_kernel.dylib         0x994ffd66 __pwrite + 10
    1   com.apple.CoreServices.CarbonCore 0x93440b3e BasicWrite(FileRecord*, short, long long, unsigned long long*, void*, unsigned long long*) + 362
    2   com.apple.CoreServices.CarbonCore 0x93461cbe PBWriteForkSync + 114
    3   com.apple.CoreServices.CarbonCore 0x93451d51 AsyncFileThread(void*) + 179
    4   libsystem_pthread.dylib       0x9b4675fb _pthread_body + 144
    5   libsystem_pthread.dylib       0x9b467485 _pthread_start + 130
    6   libsystem_pthread.dylib       0x9b46ccf2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xffbb38f7  ebx: 0xbfffefc2  ecx: 0x0bc55b28  edx: 0x0000000c
      edi: 0x0bc55b28  esi: 0xbfffed08  ebp: 0xbfffecb8  esp: 0xbfffec5c
       ss: 0x00000023  efl: 0x00010282  eip: 0x90955d06   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x0bc55b28
    Logical CPU:     2
    Error Code:      0x00000007
    Trap Number:     14
    Binary Images:
        0x1000 -  0x19aefdf +com.adobe.Photoshop (11.0.2 [11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch]] - 11.0.2) <40DBAC70-2688-44B1-A8CE-142BF8A18887> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    0x207f000 -  0x2085fff  org.twain.dsm (1.9.5 - 1.9.5) <3CE5B8E4-1F2D-3694-890D-B3965F244443> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x208d000 -  0x246701f +com.adobe.linguistic.LinguisticManager (4.0.0 - 7863) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x251b000 -  0x2715fcf +AdobeOwl (1) <4CCA2C7B-4896-4DDA-A14B-725FB0C202B5> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x2790000 -  0x289dfff +AdobeACE (1) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x28bb000 -  0x2c85fef +AdobeMPS (1) <277E01A3-CAC3-4FA9-A591-4BC0A5BC125A> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x2d14000 -  0x2d74fc7 +AdobeXMP (0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2d83000 -  0x307efff +AdobeAGM (1) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x313e000 -  0x33d1fe7 +AdobeCoolType (1) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x3455000 -  0x346efff +AdobeBIB (1) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x3478000 -  0x3499ff7 +AdobeBIBUtils (1) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x34a6000 -  0x34c1ff9 +AdobePDFSettings (1) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x34db000 -  0x34ffff6 +AdobeAXE8SharedExpat (0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x3512000 -  0x359f2cb +libicucnv.dylib.36.0 (36) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib.36.0
    0x35cc000 -  0x35e780f +libicudata.dylib.36.0 (36) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x35ea000 -  0x37a0ff4 +com.adobe.amtlib (amtlib 2.0.1.10077 - 2.0.1.10077) <CB2EC3BF-6771-4DAB-BF29-6775FB6F9608> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x37d7000 -  0x3867fc3 +WRServices (0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x39e9000 -  0x39edffc +com.adobe.AdobeCrashReporter (2.5 - 3.0.20080806) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x39f3000 -  0x3a0ffd7 +com.adobe.LogTransport (1.0 - 1.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransport
    0x3a1a000 -  0x3aeffdd +FileInfo (0) <F0932F89-FC98-4BA9-B4F2-C58D0E71D3C1> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x3b20000 -  0x3b77fff +aif_core (0) <B4DCB439-E1EE-ABE3-BD12-2C42E980366B> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x3b8f000 -  0x3bacffd +data_flow (0) <8E452B6F-8032-39D8-EB5C-49A4E31CB988> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x3bd8000 -  0x3c51fff +image_flow (0) <498A857D-F8C6-F9E0-C92F-BC3EC8680ED0> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x3cb7000 -  0x3cc7fff +image_runtime (0) <F379A952-2983-1E44-676D-BBD8259F131A> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x3cdc000 -  0x3e9bffe +aif_ogl (0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x3f4c000 -  0x444afc3 +AdobeOwlCanvas (1) <FCB2D1A3-1F6E-4182-8E2C-D0B23572D285> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x4593000 -  0x4665fe7 +AdobeAXEDOMCore (0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x4719000 -  0x477bfe7 +com.adobe.PlugPlug (1.0.0.73 - 1.0.0.73) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x47dc000 -  0x4823fc7 +com.adobe.adobe_caps (adobe_caps 2.0.99.0 - 2.0.99.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x4833000 -  0x486fff7  com.apple.vmutils (4.2.1 - 108) <37A7D6A9-0BA7-39D9-A203-7123124A18B0> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x4b9f000 -  0x4ba0ffd  com.apple.textencoding.unicode (2.6 - 2.6) <27946D57-CEFB-3EF1-B124-4A39D2621738> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x758a000 -  0x762bfc3 +com.adobe.amt.services (AMTServices 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) <31E82904-C3C2-424E-A1AE-A5EFADBB19B8> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
    0x779d000 -  0x77abfff  libSimplifiedChineseConverter.dylib (61) <6E42E198-9C8D-3F0F-9660-6D9975C2461E> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x77af000 -  0x77c1ffd  libTraditionalChineseConverter.dylib (61) <EFC81138-0455-321B-A93A-F4E9C4A3EB31> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x77c5000 -  0x77c6ff8  ATSHI.dylib (363.3) <62AF40CE-1110-31D5-931C-2B2AFB5C1A18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x77cd000 -  0x77daff7 +com.adobe.asneu.framework (asneu version 1.6.2f01 - 1.6.2) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    0xa6ae000 -  0xa6d3ff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0xa6e8000 -  0xa6f3ffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0xafe4000 -  0xafeffff  libGPUSupport.dylib (9.6.1) <46231771-6D1B-3539-A571-0FF7BF73A595> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport .dylib
    0xb800000 -  0xb823ff7 +CSI-Launcher.dylib (1) /Library/Application Support/Adobe/*/CSI-Launcher.dylib
    0xba50000 -  0xba81fe3 +com.adobe.amt.registration (AMTRegistration 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/registration.framework/Versions/a/registration
    0xbc00000 -  0xbd00fcf +com.adobe.versioncue (4.0.0.344) /Library/Application Support/Adobe/*/VersionCue.framework/VersionCue
    0xbe45000 -  0xbea1ff2 +AdobeUpdater (1) <064CFAA4-1CAF-46E3-BEBF-04948641C927> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeUpdater.framework/Versions/a/AdobeUpdater
    0x1bdeb000 - 0x1bdf6fff +Enable Async IO (???) <FD91E79F-C4AA-4EBC-AF6D-3E154F14878F> /Applications/Adobe Photoshop CS4/*/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x274e1000 - 0x274ef02f +FastCore (???) <F12878B7-BEE9-40CA-9F05-65CD0F5688E2> /Applications/Adobe Photoshop CS4/*/FastCore.plugin/Contents/MacOS/FastCore
    0x27740000 - 0x2774bffb +PPCCore (???) <ED521EB7-681D-45AA-9AE3-6BF4663E4BD3> /Applications/Adobe Photoshop CS4/*/PPCCore.plugin/Contents/MacOS/PPCCore
    0x27751000 - 0x2775cffe +AltiVecCore (???) <A967AE2A-F2AE-4E12-A7B6-68B981CBD906> /Applications/Adobe Photoshop CS4/*/AltiVecCore.plugin/Contents/MacOS/AltiVecCore
    0x27762000 - 0x277a9ff7 +MultiProcessor Support (???) <001A163B-5314-4613-A23A-F35B63065FD0> /Applications/Adobe Photoshop CS4/*/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x290f3000 - 0x29476fff  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.24.13 - 8.2.4) <CE254005-254B-386A-A4C9-4196AE0D3953> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/MacOS/AppleIn telHD3000GraphicsGLDriver
    0x2a3ff000 - 0x2a464fe3 +MMXCore (???) <E206C8DC-AEA8-49DF-8FBC-8B447E3A59A1> /Applications/Adobe Photoshop CS4/*/MMXCore.plugin/Contents/MacOS/MMXCore
    0x2a502000 - 0x2a654fc7 +com.adobe.coretech.adm (3.10x16 - 3.1) /Applications/Adobe Photoshop CS4/*/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x2afdb000 - 0x2b08bfff  ColorSyncDeprecated.dylib (426) <F54DBFF3-3165-3D15-8AE4-37B603502A5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x2b0ee000 - 0x2b0f0ffa +Adobe Unit Types (a2.0.0 - 2.0.0) /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types
    0x381a3000 - 0x383fffdf +com.adobe.PSAutomate (11.0.1 - 11.0.1) /Applications/Adobe Photoshop CS4/*/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
    0x38693000 - 0x38761fff +AdobeExtendScript (3.7) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x387d8000 - 0x38879fd7 +AdobeScCore (3.7) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x38c40000 - 0x390c2fe3 +AdobeLM_libFNP.dylib (1) <02E9AC76-9CC6-4974-AF05-48E737C2CC20> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtlib.framework/Versions/a/AdobeLM_libFNP.dylib
    0x40000000 - 0x400ae030 +AdobeJP2K (0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x50000000 - 0x502b2ff7  com.apple.AMDRadeonX3000GLDriver (1.22.25 - 1.2.2) <DE36702C-C149-331B-93C6-DD211FB4BE20> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRadeonX3000GLD river
    0x8fe5f000 - 0x8fe91417  dyld (239.4) <FF5ED937-CC28-3FEF-BCAF-750B1CDBAE36> /usr/lib/dyld
    0x90008000 - 0x9004eff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x90167000 - 0x903e3fe7  com.apple.QuickTime (7.7.3 - 2826.19) <AEF12245-C9D5-3B50-8AB6-45DC794E693E> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x903e4000 - 0x903f0ffc  libkxld.dylib (2422.100.13) <5C97CA53-F237-3ECC-9725-E71DDFEC661E> /usr/lib/system/libkxld.dylib
    0x903f1000 - 0x903f4ff7  libdyld.dylib (239.4) <B2BD2222-2A51-39B7-BCC5-B8A4F36F900A> /usr/lib/system/libdyld.dylib
    0x903f5000 - 0x903f9fff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x903fa000 - 0x90405ff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x90406000 - 0x90408fff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x90409000 - 0x9045efff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x9045f000 - 0x90489fff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x90492000 - 0x9049cff7  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <C4CC55E5-6CC4-307E-9499-AF89A6463AF4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x90827000 - 0x908a7ff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <382BE89A-9F37-3316-9AB8-DDEA691A80D1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x908a8000 - 0x908acffc  com.apple.IOSurface (91.1 - 91.1) <70637267-4D54-3EFF-A929-54FC0A8A907A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x908ad000 - 0x908afff2  com.apple.EFILogin (2.0 - 2) <BC558029-74C0-3A69-B376-8F4CBF8C338F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x908c7000 - 0x908dbff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <06C2834A-91E9-3DCC-B7D0-9EAC592CE1C5> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x90906000 - 0x909a2fff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x909a3000 - 0x90a01ffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x90a02000 - 0x90a10ff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x90a11000 - 0x90a59fff  com.apple.PerformanceAnalysis (1.47 - 47) <5C6FA727-EAC9-3924-8662-AF01090A9EF4> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x90b01000 - 0x90b39ff7  com.apple.MediaKit (15 - 709) <82E0F8C0-313C-379C-9994-4D21587D0C0C> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x90b3a000 - 0x90b68ff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x90b69000 - 0x90b69fff  com.apple.Carbon (154 - 157) <6C29C608-97B4-306E-AEC5-6F48EDF7EFB5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90b6a000 - 0x90b9aff7  com.apple.CoreServicesInternal (184.9 - 184.9) <999FEDEC-7657-3F32-A9AE-F29E0BE0AAF5> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x90e1b000 - 0x90e1cffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x90e1d000 - 0x90e86fff  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <3AD9C90B-40A9-312B-B479-3AB178A96EA1> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x910c4000 - 0x910c5fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x910c6000 - 0x910e0ff7  com.apple.GenerationalStorage (2.0 - 160.3) <D39634C9-93BF-3C74-828B-4809EF895DA0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x910e1000 - 0x91127ff7  libcurl.4.dylib (78.92.2) <452F5FFA-68A4-3834-B457-CA667C969F79> /usr/lib/libcurl.4.dylib
    0x9112e000 - 0x91131ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x91132000 - 0x9113dfff  libGPUSupportMercury.dylib (9.6.1) <4733F91D-0778-3DA3-965E-624DD53D0C9C> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport Mercury.dylib
    0x9113e000 - 0x912e64af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x912e7000 - 0x912e9ffe  libCVMSPluginSupport.dylib (9.6.1) <C2071F9E-72A1-360C-BF7E-286F9681922F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x912ea000 - 0x91315ff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x91686000 - 0x9168bff3  libsystem_platform.dylib (24.90.1) <0613F163-9A7A-3908-B30B-AC1627503933> /usr/lib/system/libsystem_platform.dylib
    0x916a6000 - 0x91774ff7  com.apple.backup.framework (1.5.3 - 1.5.3) <03BFC83E-A086-3CA8-A3E6-2EA6F1D388AF> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91851000 - 0x918a6ff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x918a7000 - 0x91982ff7  com.apple.LaunchServices (572.26 - 572.26) <5915A9AC-7928-30B1-9329-94048ADE81D9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x91983000 - 0x91abafff  com.apple.desktopservices (1.8.3 - 1.8.3) <3574872B-435C-3AB8-A453-02A33A771CDB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x91aed000 - 0x91b1effb  com.apple.GSS (4.0 - 2.0) <145B389F-AC1E-3817-835D-8EA263E96EA5> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9208d000 - 0x920e9ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x920ea000 - 0x920ebffa  libsystem_sandbox.dylib (278.11) <1A6276FC-9204-3A59-8024-2D572BA9D2F2> /usr/lib/system/libsystem_sandbox.dylib
    0x920ec000 - 0x9213cff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x9215b000 - 0x92168fff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x92169000 - 0x9219ffff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x921a0000 - 0x922b2ffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x922b3000 - 0x922bbfff  liblaunch.dylib (842.90.1) <B259692D-D60B-3BCE-9E03-32F457CB5046> /usr/lib/system/liblaunch.dylib
    0x922bc000 - 0x9238cfef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x923dc000 - 0x923e2ff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x923e8000 - 0x9241dffd  libssl.0.9.8.dylib (50) <F3BEA2DF-DB84-37F0-B4C7-97C0A4DF19C9> /usr/lib/libssl.0.9.8.dylib
    0x9241e000 - 0x9243aff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9243b000 - 0x9243ffff  libheimdal-asn1.dylib (323.92.1) <DD8BAEED-28AC-389E-9DC4-E32DA60CB05A> /usr/lib/libheimdal-asn1.dylib
    0x9249f000 - 0x924a7fff  libcopyfile.dylib (103) <1B1484BD-08B6-3BA9-94CA-A7C24B610EB3> /usr/lib/system/libcopyfile.dylib
    0x924a8000 - 0x924b0fff  libsystem_dnssd.dylib (522.90.2) <A73663C9-CE65-3FF3-B41B-686728BBFB00> /usr/lib/system/libsystem_dnssd.dylib
    0x924bc000 - 0x924ccff7  libsasl2.2.dylib (170) <CA1C07F6-8E17-315E-AE49-AB696DDE6707> /usr/lib/libsasl2.2.dylib
    0x924cd000 - 0x924cdfff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x924ce000 - 0x924d0fff  com.apple.securityhi (9.0 - 55005) <FD6FC95D-CBE2-329F-9ACB-AB3027CAAB6D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x924d1000 - 0x92570ff7  libCoreStorage.dylib (380) <78F0E11F-D040-31DD-BD5E-6AC0EC8FD0D4> /usr/lib/libCoreStorage.dylib
    0x92585000 - 0x92668ff7  libcrypto.0.9.8.dylib (50) <B367D3A3-FC1F-326C-92EC-CAD81666524D> /usr/lib/libcrypto.0.9.8.dylib
    0x926d0000 - 0x926f8fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x926f9000 - 0x92701ffe  libGFXShared.dylib (9.6.1) <632989B3

    Firstly, well done for getting the crash log.
    The bit :
    +Processor context corrupt+
    +Error enabled+
    +Uncorrected error+
    +panic(cpu 3 caller 0x001A8656)...+
    I'd say is the immediate cause (kernel panic) of the shutdown.
    Apart from that, is your memory ok?
    There was an identical (is that you\?) post a while back on:
    http://forums.macrumors.com/showthread.php?t=484526
    This article gives some mmore info as to possible resolution:
    http://support.apple.com/kb/TS1388?viewlocale=en_US
    Antoher poster had problems with 1st gen Mac Pros:
    http://discussions.apple.com/thread.jspa?threadID=1722821&tstart=0
    Finally, and this is probably your best course of action: *phone apple (if you cannot get into an Apple store).* It sounds serious enough to me.
    Sorry I could not help any further. Good luck

  • Can anyone solve this cmos puzzle?

    Attached are two CMOS circuits created in Multisim 10.1 (10.1.197)
    The first circuit was created after the second.
    I'd created two identical oscillators with both CMOS gates and a CMOS IC, but neither of them responded with anywhere near the correct frequency.  (The oscillator of my design wasn't working right -- the C had an impossible square waveform, which prompted further investigation into the circuit.)  I wanted to investigate this to determine what I needed to do to get the frequency roughly correct.  So I decided to go simple-stupid: start with a simple RC circuit, and slowly, step by step, transform it into a CMOS oscillator, just to see where the frequency went to lunch.  The circuits below resulted from this quest for the answer.
    I'm very puzzled.  These CMOS gates don't appear to work at all.  I never could get a legal CMOS output (<50mV). 
    As I see it, my RC oscillator has no chance of working if the gates don't work.   This is bad enough that I'm going to have to break out EWB 5.12 now, just to see if all those years ago CMOS didn't work and I'd never noticed.
    If anyone out there can solve this puzzler, modify these circuits so that I can get legal CMOS operation, I'd like to know how it's done.
    Attachments:
    cmos_puzzler.ms10 ‏90 KB
    simpleRC_becomeOSC_puzzle.ms10 ‏255 KB

    The first piece of the puzzle is that you don't have VSS tied to GND so they are disconnected.
    Second, you don't have the proper timebase set on the scope for your analysis, part of your answer lies here:
    http://www.datasheet4u.com/html/4/0/0/4001B_FairchildSemiconductor.pdf.html
    looking specifically at Tplh (time propogation low to high) with VDD at 5V.
    As I read it, the NOR should have a low based on your dual high condition, BUT, during startup, there is no stablization of during the current inrush to allow the inputs to stablize. During this process, the input ramps the output in a linear fashion, once the inputs reach proper operating level, then gate switchs after the 120ns setup prop delay time(datasheet), at which time, then goes low and remains low for the duration, as it should.
    I'm not sure how your trying to measure a frequency out of that since it becomes steady state with DC power supplies.
    This comes from the simpleRC scope.....I hope this is what you were looking for???
    Chris
    Signature: Looking for a footprint, component, model? Might be here > http://ni.kittmaster.com
    Attachments:
    SS005.png ‏13 KB

  • Can anyone explain this error??

    This program splits an int array to two arrays: one containing only even numbers, and the other only odd numbers. The two arrays are returned by the split method as array of two arrays, with the first containing only the even numbers and the second containing only the odd numbers.
    The source code:
    class OddEven
    public static void main(String[] args) {
    int[] input = {10, 5, 6, 1, 2, 17, 9, 4, 33, 11, 9, 8};
    // splits the array into two arrays
    int[][] output = split(input);
    System.out.print("original: " + input.length);
    for (int i = 0; i < input.length; ++i) {   
    if ( i % 2 == 1);
    System.out.print(" even: " + i);
    if ( i % 2 == 0);
    system.out.print(" odd: " + i);
    public static int[][] split(int[] ori) {
    int i,even = 0,odd = 0;
    // The result is a 2d array with result[0] containing even nos and result[1] containing odd nos
    int result[][];
    for(i = 0; i < result.length; ++i){
    // Even
    if( i % 2 == 0) {
    result[odd][even] = 0;
    even++;
    // Odd
    else
    result[even][odd] = 0;
    odd++;
    This is what i should get when it is run.
    D:\> OddEven
    original: 10 5 6 1 2 17 9 4 33 11 9 8
    even: 10 6 2 4 8
    odd: 5 1 17 9 33 11 9
    However, i keep getting the onr error "package system does not exist" for the line "system.out.print(" odd: " + i);".
    I really don't know why. Can anyone help me please??
    Priya

    It should be
    System.out.print(...), like you've used in all the other lines. Look at the capital "S"!
    Christian

  • Help!! can anyone decipher this error report?

    I would be really grateful if anyone could decipher this error report. My system has become really unstable and unusable if I can get beyond the grey screen. During use I get a grey curtain come down and a message telling me to hold the power switch to shutdown.
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 3 GHz, 2 GB
    Graphics: kHW_ATIr580Item, ATY,RadeonX1900, spdisplayspciedevice, 512 MB
    Memory Module: DIMM Riser A/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser A/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz
    Running 10.5.5
    PCI Card: ATY,RadeonX1900, display, Slot-1
    One of the many messages reads:
    Mon Sep 29 21:59:41 2008
    Machine-check capabilities (cpu 3) 0x0000000000000006:
    family: 6 model: 15 stepping: 6 microcode revision 198
    Intel(R) Xeon(R) CPU 5160 @ 3.00GHz
    6 error-reporting banks
    Machine-check status 0x0000000000000005
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32MC0STATUS(0x401): 0x1000000020000000 invalid
    IA32MC1STATUS(0x405): 0x0000000000000000 invalid
    IA32MC2STATUS(0x409): 0x0000000000000000 invalid
    IA32MC3STATUS(0x40d): 0x0020000000000000 invalid
    IA32MC4STATUS(0x411): 0x0000000000000011 invalid
    IA32MC5STATUS(0x415): 0xb200001080200e0f valid
    MCA error code : 0x0e0f
    Model specific error code: 0x8020
    Other information : 0x00000010
    Status bits:
    Processor context corrupt
    Error enabled
    Uncorrected error
    panic(cpu 3 caller 0x001A8656): Machine Check at 0x00ba9e07, thread:0x3efce40, trapno:0x12, err:0x0, registers:
    CR0: 0x8001003b, CR2: 0x00000000, CR3: 0x01009000, CR4: 0x00000660
    EAX: 0x00000000, EBX: 0x00000000, ECX: 0x00000004, EDX: 0x2855a240
    ESP: 0x2e5f3820, EBP: 0x2e5f3888, ESI: 0x03e41d00, EDI: 0x03e1f000
    EFL: 0x00000002, EIP: 0x00ba9e07
    Backtrace (CPU 3), Frame : Return Address (4 potential args on stack)
    0x2e676fb8 : 0x12b0fa (0x459234 0x2e676fec 0x133243 0x0)
    0x2e677008 : 0x1a8656 (0x462498 0xba9e07 0x3efce40 0x12)
    0x2e6770e8 : 0x19fcf3 (0x2e677100 0x0 0x0 0x0)
    Backtrace terminated-invalid frame pointer 0x2e5f3888
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    Not yet set
    Kernel version:
    Darwin Kernel Version 9.5.0: Wed Sep 3 11:29:43 PDT 2008; root:xnu-1228.7.58~1/RELEASE_I386
    System model name: MacPro1,1 (Mac-F4208DC8)
    Many thanks guys.

    Firstly, well done for getting the crash log.
    The bit :
    +Processor context corrupt+
    +Error enabled+
    +Uncorrected error+
    +panic(cpu 3 caller 0x001A8656)...+
    I'd say is the immediate cause (kernel panic) of the shutdown.
    Apart from that, is your memory ok?
    There was an identical (is that you\?) post a while back on:
    http://forums.macrumors.com/showthread.php?t=484526
    This article gives some mmore info as to possible resolution:
    http://support.apple.com/kb/TS1388?viewlocale=en_US
    Antoher poster had problems with 1st gen Mac Pros:
    http://discussions.apple.com/thread.jspa?threadID=1722821&tstart=0
    Finally, and this is probably your best course of action: *phone apple (if you cannot get into an Apple store).* It sounds serious enough to me.
    Sorry I could not help any further. Good luck

  • Can anyone solve this one?

    Hi,
    I've got a problem with compiling the code below.
    I've downloaded a java and a class file. The class file is working (it's a slide-menu).
    Because I wanted to update a record in a DB, I changed the java file. The part I changed is the part under ActionPerformed. The actionPerformed code is working independently.
    But when I implement it in the java file, he stops compiling.
    I tried to compile the original code, but it stopped also at the same line. In the new code it's line 318.
    The line is:
    this.add(mainMenu);
    and the error is:
    method add(java.awt.Menu) not found in class FisMenu.
    The strangest thing is that he gives an error in the code which is used in the WORKING class file.
    I have had a hint to use Japplet instead of Applet, that�s why I post this problem here.
    can anyone help me out?
    thanks in advance.
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.net.*;
    import java.util.*;
    import netscape.javascript.*;
    import sqlj.runtime.*;
    import sqlj.runtime.ref.*;
    import java.sql.*;
    import java.lang.*;
    public class FisMenuApplet extends Applet implements MouseListener, ActionListener {
    String title, img, bgcolor, text, font, size, style, menufont, menustyle, menusize, data;
    String actions[], targets[];
    java.awt.Menu menus[];
    MenuItem menuItems[];
    int fontsize, menufontsize;
    CardLayout cardlayout;
    java.awt.Menu mainMenu;
    Image bgImage = null;
    boolean parseError = false, imgError = false;
    URL imgUrl;
    Label label;
    Font labelFont, menuFont;
    //Construct the applet
    public FisMenuApplet() {
    //Initialize the applet
    public void main() {
    cardlayout = new CardLayout();
    title = getParameter("title");
    if (title == null) title = "Menu";
    // the colors for bgcolor and text are used only for the applet label
    // Java 1.1 menus themselves don't support colors, although some Unix implementations
    // allow a menu's background color to be inherited from the object it's attached to.
    bgcolor = getParameter("bgcolor");
    if (bgcolor == null) bgcolor = "white";
    else bgcolor = bgcolor.toLowerCase();
    text = getParameter("text");
    if (text == null) text = "blue";
    else text = text.toLowerCase();
    // font, size and style are used for the applet's text label (if any)
    font = getParameter("font");
    if (font == null) font = "SansSerif";
    size = getParameter("size");
    if (size == null) fontsize = 11;
    else
    try {
    fontsize = Integer.parseInt(size);
    } catch(NumberFormatException f) {
    fontsize = 11;
    style = getParameter("style");
    if (style == null) style = "plain";
    labelFont = new Font(font, translateStyle(style), fontsize);
    // menufont, menusize and menustyle default to font, size and style if undefined,
    // but they can be also defined explicitely in case we want the popup menu to look different
    // from the applet's text label (if any)
    menufont = getParameter("menufont");
    if (menufont == null) menufont = font;
    menusize = getParameter("menusize");
    if (menusize == null) menufontsize = fontsize;
    else
    try {
    menufontsize = Integer.parseInt(menusize);
    } catch(NumberFormatException f) {
    menufontsize = 11;
    menustyle = getParameter("menustyle");
    if (menustyle == null) menustyle = style;
    menuFont = new Font(menufont, translateStyle(menustyle), menufontsize);
    data = getParameter("data");
    parseData(data);
    this.addMouseListener(this);
    this.setBackground(translateColor(bgcolor));
    this.setForeground(translateColor(text));
    this.setFont(labelFont);
    this.setLayout(cardlayout);
    img = getParameter("img");
    if (img != null) {
    try { // absolute URL
    imgUrl = new URL(img);
    bgImage = this.getImage(imgUrl);
    } catch(MalformedURLException a) {
    try { // relative URL
    imgUrl = new URL(this.getDocumentBase(), img);
    bgImage = this.getImage(imgUrl);
    } catch(MalformedURLException r) {
    imgError = true;
    bgImage = this.getImage(this.getDocumentBase(), img);
    } else {
    label = new Label(title);
    label.setAlignment(1);
    label.addMouseListener(this);
    this.add(title, label);
    //Start the applet
    public void start() {
    //Stop the applet
    public void stop() {
    //Destroy the applet
    public void destroy() {
    //Get parameter info
    public String[][] getParameterInfo() {
    String pinfo[][] =
    {"title", "String", "Menu title"},
    {"img", "URL", "Background image"},
    {"bgcolor", "Color or Hex RGB value", "Menu background color"},
    {"text", "Color or Hex RGB value", "Menu foreground color"},
    {"font", "Font name", "Menu font name"},
    {"size", "Integer", "Menu font size"},
    {"style", "Sum of BOLD,PLAIN,ITALIC", "Menu font style"},
    {"menufont", "Font name", "Menu font name"},
    {"menusize", "Integer", "Menu font size"},
    {"menustyle", "Sum of BOLD,PLAIN,ITALIC", "Menu font style"},
    {"data", "Menu item names, actions and targets", "Menu data"},
    return pinfo;
    public void paint(Graphics g) {
    if (bgImage != null)
    g.drawImage(bgImage,0,0,this);
    if (imgError)
    this.showStatus("FisMenuApplet: invalid URL for img parameter " + img);
    if (parseError)
    this.showStatus("FisMenuApplet Error: unbalanced braces in data parameter tag.");
    public void mousePressed(MouseEvent e) {
    public void mouseReleased(MouseEvent e) {
    public void mouseClicked(MouseEvent e) {
    popup();
    public void mouseEntered(MouseEvent e) {
    popup();
    public void mouseExited(MouseEvent e) {
    public void actionPerformed(ActionEvent e)
    // Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    try
    Connection con = DriverManager.getConnection("jdbc:odbc:tom", "", "");
    System.out.println("jdbc:odbc connectie...");
    Statement stmt = con.createStatement();
    //Update database record
    stmt.executeUpdate(
    "update fis_tuser_preferences set word_path = 'ffisau01' ");
    System.out.println("ffisau01");
    //Close conection and commit transaction
    con.close();
    System.out.println("connection closed");
    catch (Exception f)
    System.err.println("problems connecting to URL");
    public void popup() {
    // if (!parseError)
    // mainMenu.show(this,this.getSize().width/2,this.getSize().height/2);
    private Color translateColor(String c) {
    if(c.equalsIgnoreCase("white"))
    return(Color.white);
    else if(c.equalsIgnoreCase("lightgray"))
    return(Color.lightGray);
    else if(c.equalsIgnoreCase("gray"))
    return(Color.gray);
    else if(c.equalsIgnoreCase("darkgray"))
    return(Color.darkGray);
    else if(c.equalsIgnoreCase("black"))
    return(Color.black);
    else if(c.equalsIgnoreCase("red"))
    return(Color.red);
    else if(c.equalsIgnoreCase("pink"))
    return(Color.pink);
    else if(c.equalsIgnoreCase("orange"))
    return(Color.orange);
    else if(c.equalsIgnoreCase("yellow"))
    return(Color.yellow);
    else if(c.equalsIgnoreCase("green"))
    return(Color.green);
    else if(c.equalsIgnoreCase("magenta"))
    return(Color.magenta);
    else if(c.equalsIgnoreCase("cyan"))
    return(Color.cyan);
    else if(c.equalsIgnoreCase("blue"))
    return(Color.blue);
    // allow for Hex RGB values (and an optional leading #, as in HTML syntax)
    else if (c.length() == 6 || (c.length() == 7 && c.charAt(0) == '#')) {
    if (c.length() == 7)
    c = c.substring(1);
    return(new Color(hexToInt(c.substring(0,2)),
    hexToInt(c.substring(2,4)),hexToInt(c.substring(4,6))));
    else
    return(Color.white);
    private int hexToInt(String c) {
    try {
    return(Integer.parseInt(c, 16));
    } catch(NumberFormatException h) {
    return 0;
    private int translateStyle(String s) {
    int style = 0;
    String token = null;
    StringTokenizer st = new StringTokenizer(s,",+ \t\n\r");
    do {
    try {
    token = st.nextToken();
    } catch(NoSuchElementException n) {}
    if (token.equalsIgnoreCase("PLAIN"))
    style += Font.PLAIN;
    else if (token.equalsIgnoreCase("BOLD"))
    style += Font.BOLD;
    else if (token.equalsIgnoreCase("ITALIC"))
    style += Font.ITALIC;
    } while (st.hasMoreTokens());
    return style;
    private void parseData(String s) {
    // menuItem counters start at -1 so that at first increment, they get set to
    // the first array subscript value of 0
    // menu counters start at 0 so that at first increment, they get set to
    // the array subscript value of 1, the first value (0) being reserved for the main menu
    int levelCtr = -1, menuCtr = 0, menuItemCtr = -1;
    int levelCount = 0, menuCount = 0, menuItemCount = -1;
    int parentMenuPtr[];
    String itemToken = null, datatoken = null;
    String title = "", action = "", target = "_self";
    boolean newMenu = false;
    if (s == null || s.indexOf("{") == -1) {
    parseError = true;
    return;
    StringTokenizer braces = new StringTokenizer(s,"{}",true);
    StringTokenizer braceCtr = new StringTokenizer(s,"{}",true);
    StringTokenizer asterisks;
    // Get the number of menus and menuItems for which to allocate array space
    do {
    try {
    itemToken = braceCtr.nextToken();
    } catch(NoSuchElementException i) {}
    if (itemToken.charAt(0) == '{') {
    if (newMenu)
    menuCount++;
    newMenu = true;
    levelCtr++;
    if (levelCount < levelCtr) levelCount = levelCtr;
    } else if (itemToken.charAt(0) == '}') {
    if (newMenu)
    menuItemCount++;
    newMenu = false;
    levelCtr--;
    } while (braceCtr.hasMoreTokens());
    if (levelCtr != -1) {
    parseError = true;
    return;
    // allocate one more element than the counter values , since the first subscript value is 0
    actions = new String[menuItemCount+1];
    targets = new String[menuItemCount+1];
    menuItems = new MenuItem[menuItemCount+1];
    menus = new java.awt.Menu[menuCount+1];
    parentMenuPtr = new int[levelCount+1];
    mainMenu = new java.awt.Menu(title);
    menus[0] = (java.awt.Menu)(mainMenu);
    this.add(mainMenu);
    itemToken = null;
    newMenu = false;
    // Parse the data Param and build the menu and menu items
    do {
    try {
    itemToken = braces.nextToken();
    } catch(NoSuchElementException i) {}
    if (itemToken.charAt(0) == '{') {
    if (newMenu) {
    menuCtr++;
    menus[menuCtr] = new java.awt.Menu(title);
    menus[menuCtr].setFont(menuFont);
    menus[parentMenuPtr[levelCtr]].add(menus[menuCtr]);
    parentMenuPtr[levelCtr+1] = menuCtr;
    newMenu = true;
    levelCtr++;
    } else if (itemToken.charAt(0) == '}') {
    if (newMenu) {
    menuItemCtr++;
    actions[menuItemCtr] = action;
    targets[menuItemCtr] = target;
    menuItems[menuItemCtr] = new MenuItem(title);
    menuItems[menuItemCtr].setFont(menuFont);
    menuItems[menuItemCtr].addActionListener(this);
    menuItems[menuItemCtr].setActionCommand(new Integer(menuItemCtr).toString());
    menus[parentMenuPtr[levelCtr]].add(menuItems[menuItemCtr]);
    newMenu = false;
    levelCtr--;
    } else if (!itemToken.trim().equals("")) {
    asterisks = new StringTokenizer(itemToken,"*");
    try {
    title = asterisks.nextToken();
    // a menu separator is a -, but allow for hr as well, as in HTML syntax
    if (title.equals("-") || title.equalsIgnoreCase("HR"))
    title = "-";
    } catch(NoSuchElementException i) {
    title = "-";
    try {
    action = asterisks.nextToken();
    } catch(NoSuchElementException i) {
    action = "";
    try {
    target = asterisks.nextToken();
    } catch(NoSuchElementException i) {
    target = "_self";
    } while (braces.hasMoreTokens());

    Congratulations!
    I understand completely that you don't like to look at my code and I don't aspect you to help me.
    But I'll sure appriciate any help from you or anyone else, today and in the future :)
    about the working class file, I downloaded it once and it's working, but when I compile the java file it crashes (even in de original downloaded code).
    I just need a way for my code to accept the add method (even if there are major changes needed).

  • OAM 11g - Can anyone decipher this error message?

    I'm just started getting this error message whenever I hit any protected page. Instead of redirecting to the login page, it shows a generic System Error and the logs show the error below. If I unprotect the page, it comes up fine.
    Anyone ever ran across this?
    Thanks so much
    ===
    [2011-09-19T18:31:35.759-05:00] [oam_server1] [ERROR] [] [oracle.oam.proxy.oam] [tid: [ACTIVE].ExecuteThread: '10' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JA41weuCSs0pnwh8iZ1ESFp10000I_,0] [APP: oam_server] Exception in decryption[[
    javax.crypto.BadPaddingException: Given final block not properly padded
    at com.sun.crypto.provider.SunJCE_f.b(DashoA13*..)
    at com.sun.crypto.provider.SunJCE_f.b(DashoA13*..)
    at com.sun.crypto.provider.AESCipher.engineDoFinal(DashoA13*..)
    at javax.crypto.Cipher.doFinal(DashoA13*..)
    at oracle.security.am.common.nap.util.decryptor.CookieDecryptor.doAESDecryption(CookieDecryptor.java:233)
    at oracle.security.am.proxy.oam.pbl.plugin.OAMProxyEngine.getSSOToken(OAMProxyEngine.java:577)
    at oracle.security.am.proxy.oam.pbl.plugin.OAMProxyEngine.handleOAMLoginRequest(OAMProxyEngine.java:259)
    at oracle.security.am.engines.enginecontroller.OAMEngineController.processEvent(OAMEngineController.java:127)
    at oracle.security.am.controller.MasterController.processEvent(MasterController.java:354)
    at oracle.security.am.controller.MasterController.processRequest(MasterController.java:517)
    at oracle.security.am.controller.MasterController.process(MasterController.java:457)
    at oracle.security.am.pbl.PBLFlowManager.delegateToMasterController(PBLFlowManager.java:209)
    at oracle.security.am.pbl.PBLFlowManager.handleBaseEvent(PBLFlowManager.java:147)
    at oracle.security.am.pbl.PBLFlowManager.processRequest(PBLFlowManager.java:107)
    at oracle.security.am.pbl.transport.http.AMServlet.handleRequest(AMServlet.java:168)
    at oracle.security.am.pbl.transport.http.AMServlet.doPost(AMServlet.java:133)
    at oracle.security.am.pbl.transport.http.AMServlet.doGet(AMServlet.java:673)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    [2011-09-19T18:31:35.761-05:00] [oam_server1] [ERROR] [OAM-04037] [oracle.oam.proxy.oam] [tid: [ACTIVE].ExecuteThread: '10' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JA41weuCSs0pnwh8iZ1ESFp10000I_,0] [APP: oam_server] Exception encountered while processing the HTTP message in OAM proxy. Exception NAPException in parsing the Obrareq request
    [2011-09-19T18:31:35.761-05:00] [oam_server1] [ERROR] [OAM-00002] [oracle.oam.binding] [tid: [ACTIVE].ExecuteThread: '10' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JA41weuCSs0pnwh8iZ1ESFp10000I_,0] [APP: oam_server] Error occurred while handling the request.[[
    oracle.security.am.common.utilities.exception.AmRuntimeException: NAPException in parsing the Obrareq request
    at oracle.security.am.proxy.oam.pbl.plugin.OAMProxyEngine.handleOAMLoginRequest(OAMProxyEngine.java:320)
    at oracle.security.am.engines.enginecontroller.OAMEngineController.processEvent(OAMEngineController.java:127)
    at oracle.security.am.controller.MasterController.processEvent(MasterController.java:354)
    at oracle.security.am.controller.MasterController.processRequest(MasterController.java:517)
    at oracle.security.am.controller.MasterController.process(MasterController.java:457)
    at oracle.security.am.pbl.PBLFlowManager.delegateToMasterController(PBLFlowManager.java:209)
    at oracle.security.am.pbl.PBLFlowManager.handleBaseEvent(PBLFlowManager.java:147)
    at oracle.security.am.pbl.PBLFlowManager.processRequest(PBLFlowManager.java:107)
    at oracle.security.am.pbl.transport.http.AMServlet.handleRequest(AMServlet.java:168)
    at oracle.security.am.pbl.transport.http.AMServlet.doPost(AMServlet.java:133)
    at oracle.security.am.pbl.transport.http.AMServlet.doGet(AMServlet.java:673)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: oracle.security.am.common.exceptions.NAPException: Exception in decryption
    at oracle.security.am.common.nap.util.decryptor.CookieDecryptor.doAESDecryption(CookieDecryptor.java:257)
    at oracle.security.am.proxy.oam.pbl.plugin.OAMProxyEngine.getSSOToken(OAMProxyEngine.java:577)
    at oracle.security.am.proxy.oam.pbl.plugin.OAMProxyEngine.handleOAMLoginRequest(OAMProxyEngine.java:259)
    ... 36 more
    Caused by: javax.crypto.BadPaddingException: Given final block not properly padded
    at com.sun.crypto.provider.SunJCE_f.b(DashoA13*..)
    at com.sun.crypto.provider.SunJCE_f.b(DashoA13*..)
    at com.sun.crypto.provider.AESCipher.engineDoFinal(DashoA13*..)
    at javax.crypto.Cipher.doFinal(DashoA13*..)
    at oracle.security.am.common.nap.util.decryptor.CookieDecryptor.doAESDecryption(CookieDecryptor.java:233)
    ... 38 more

    One possible cause can be that the cwallet.sso files in configurations are out of sync. Check every cwallet.sso in your OAM Server domain and webgate configurations.
    HTH,
    --olaf                                                                                                                                                                                                                                                                                                                                                                           

Maybe you are looking for