Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 59492 invoked from network); 23 Mar 2007 14:21:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Mar 2007 14:21:54 -0000 Received: (qmail 22857 invoked by uid 500); 23 Mar 2007 14:22:02 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 22756 invoked by uid 500); 23 Mar 2007 14:22:01 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 22674 invoked by uid 99); 23 Mar 2007 14:22:01 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Mar 2007 07:22:01 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Mar 2007 07:21:52 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id D57C6714076 for ; Fri, 23 Mar 2007 07:21:32 -0700 (PDT) Message-ID: <5643927.1174659692871.JavaMail.jira@brutus> Date: Fri, 23 Mar 2007 07:21:32 -0700 (PDT) From: "Alexei Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-3135) [classlib][imageio] unexpected InterruptedException after loading png-image In-Reply-To: <22177137.1170924066139.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-3135?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12483611 ] Alexei Zakharov commented on HARMONY-3135: ------------------------------------------ I believe we should close this JIRA since IMO "Invalid image width" issue has no relations to the initial problem. Especially if "invalid image width" is reproducible by tests from HARMONY-1954. > [classlib][imageio] unexpected InterruptedException after loading png-image > --------------------------------------------------------------------------- > > Key: HARMONY-3135 > URL: https://issues.apache.org/jira/browse/HARMONY-3135 > Project: Harmony > Issue Type: Bug > Components: Classlib > Environment: win32, lnx32, > Reporter: Evgeniya Maenkova > Assigned To: Alexei Zakharov > Priority: Critical > Attachments: golden_0400.png, HARMONY-3135-build.xml.patch, HARMONY-3135-ImageIOTest.patch, HARMONY-3135.patch, images.zip, Sync.java > > > The test is: (to be attached) > import java.io.IOException; > import java.net.URL; > > import javax.imageio.ImageIO; > > public class Sync { > > public static void main(String[] args) { > URL imageURL = Sync.class.getResource("golden_0400.png"); > System.out.println(imageURL); > try { > ImageIO.read(imageURL.openStream()); > } catch (IOException e) { > } > > Thread b = new Thread(); > b.start(); > try { > b.join(); > } catch (Exception e) { > System.out.println((e instanceof InterruptedException)); > e.printStackTrace(); > } > > int res = 1; > for (int i = 1; i < 10000; i ++) { > res = (res * i) % 107 + 1; > } > System.out.println("End " + res); > > } > } > > DRL vm output: > C:\ecl_311_ws\Test>C:\Harmony\trunk\working_vm\build\deploy\jdk\jre\bin\java -Xem:server Sync > file:/C:/ecl_311_ws/Test/./golden_0400.png > true > java.lang.InterruptedException > at java.lang.Object.wait(Object.java:100) > at java.lang.Thread.join(Thread.java:591) > at Sync.main(Sync.java:19) > End 26 > > RI output: > file:/C:/ecl_311_ws/Test/golden_0400.png > End 26 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.