You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vasily Zakharov (JIRA)" <ji...@apache.org> on 2007/04/09 21:01:32 UTC

[jira] Updated: (HARMONY-3602) [classlib][awt][drlvm][netbeans] OffscreenImage.flush() sets interrupt flag

     [ https://issues.apache.org/jira/browse/HARMONY-3602?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vasily Zakharov updated HARMONY-3602:
-------------------------------------

    Attachment: test.gif

Test image - nothing important, it just should exist for the test to work.


> [classlib][awt][drlvm][netbeans] OffscreenImage.flush() sets interrupt flag
> ---------------------------------------------------------------------------
>
>                 Key: HARMONY-3602
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3602
>             Project: Harmony
>          Issue Type: Bug
>          Components: App-Oriented Bug Reports, Classlib, DRLVM
>            Reporter: Vasily Zakharov
>         Attachments: test.gif
>
>
> The following piece of code causes interrupt flag to be set on the current thread:
> public class Test {
>     public static void main(String args[]) throws Exception {
>         java.awt.Image img = java.awt.Toolkit.getDefaultToolkit().createImage(Thread.currentThread().getContextClassLoader().getResource("test.gif"));
>         new javax.swing.ImageIcon(img); // Loads the image.
>         img.flush(); // ERROR: Sets interrupt flag.
>         System.out.println(Thread.currentThread().isInterrupted() ? "FAIL" : "SUCCESS");
>     }
> }
> Please put the attached test.gif (it's a trivial image, nothing special, but it should exist) to current directory before running the test.
> The stack of calls causing interrupt flag to be set is:
> 	org.apache.harmony.awt.gl.image.ImageDecoder.terminate() :128
> 	org.apache.harmony.awt.gl.image.DecodingImageSource.removeConsumer(ImageConsumer) :105
> 	org.apache.harmony.awt.gl.image.OffscreenImage.stopProduction() :426
> 	org.apache.harmony.awt.gl.image.OffscreenImage.flush() :133
> Probably ImageDecoder.terminate() should not use Thread.currentThread() do determine a thread to interrupt.
> Output on RI:
> SUCCESS
> Output on Harmony/IBM VM:
> SUCCESS
> Output on Harmony/DRL VM:
> FAIL
> This looks like a clear AWT problem, however the problem only occurs on DRL VM, so probably some issue (race condition, lack of synchronization or something like that) exists there also.
> The problem was discovered while trying to run NetBeans on Harmony.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.