Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 72082 invoked from network); 26 Jan 2007 07:16:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Jan 2007 07:16:10 -0000 Received: (qmail 16334 invoked by uid 500); 26 Jan 2007 07:16:16 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 16308 invoked by uid 500); 26 Jan 2007 07:16:16 -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 16299 invoked by uid 99); 26 Jan 2007 07:16:16 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jan 2007 23:16:16 -0800 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; Thu, 25 Jan 2007 23:16:09 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 7726D7142B6 for ; Thu, 25 Jan 2007 23:15:49 -0800 (PST) Message-ID: <30402825.1169795749484.JavaMail.jira@brutus> Date: Thu, 25 Jan 2007 23:15:49 -0800 (PST) From: "Vera Petrashkova (JIRA)" To: commits@harmony.apache.org Subject: [jira] Created: (HARMONY-3059) [classlib][awt]VM hangs up if it invokes Toolkit.getDefaultToolkit() MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [classlib][awt]VM hangs up if it invokes Toolkit.getDefaultToolkit() --------------------------------------------------------------------- Key: HARMONY-3059 URL: https://issues.apache.org/jira/browse/HARMONY-3059 Project: Harmony Issue Type: Bug Components: Classlib Environment: Windows, Linux Reporter: Vera Petrashkova The following test demonstrates that VM hangs up if it invokes java.awt.Toolkit.getDefaultToolkit() method. ---------------------- import java.awt.Toolkit; public class getDefToolkitTest { public static void main(String[] args) { Toolkit.getDefaultToolkit(); System.err.println("Test finished"); // System.exit(0); } } ---------------------- The running does not stop after message: "Test finished" But if the program contains System.exit(..) then it finishes correctly. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.