Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 43214 invoked from network); 28 May 2007 11:28:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 May 2007 11:28:37 -0000 Received: (qmail 1896 invoked by uid 500); 28 May 2007 11:28:41 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 1868 invoked by uid 500); 28 May 2007 11:28:41 -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 1850 invoked by uid 99); 28 May 2007 11:28:41 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 May 2007 04:28:41 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED 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; Mon, 28 May 2007 04:28:36 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 6F66E71416E for ; Mon, 28 May 2007 04:28:16 -0700 (PDT) Message-ID: <11511197.1180351696453.JavaMail.jira@brutus> Date: Mon, 28 May 2007 04:28:16 -0700 (PDT) From: "Ivan Popov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Closed: (HARMONY-3820) [drlvm][jvmti][thread] JVMTI reports wrong threads for main thread group In-Reply-To: <21760692.1178543715472.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-3820?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ivan Popov closed HARMONY-3820. ------------------------------- Resolution: Fixed Verified for harmony-jdk-r542123. Now Eclipse debugger shows system threads and thread groups correctly. Thanks. Closing this issue. > [drlvm][jvmti][thread] JVMTI reports wrong threads for main thread group > ------------------------------------------------------------------------ > > Key: HARMONY-3820 > URL: https://issues.apache.org/jira/browse/HARMONY-3820 > Project: Harmony > Issue Type: Bug > Components: DRLVM > Environment: Windows/x86, harmony-jdk-r535765 > Reporter: Ivan Popov > Assignee: Gregory Shimansky > > After switching to GCv5 JVMTI reports wrong threads for the "main" thread group. There ara a lot of "finalizer" threads and no "main" thread. > To reproduce this run HelloWorld in Eclipse debugger, stop at breakpoint, turn on showing threads groups in the main menu of Debug view and see threads list. > With GCv5: > HelloWorld [Java Application] > HelloWorld at localhost:1067 > Thread Group [system] > Thread Group [main] > Daemon Thread [ref handler] (Running) > Daemon Thread [finalizer] (Running) > Daemon Thread [finalizer] (Running) > Daemon Thread [finalizer] (Running) > Daemon Thread [finalizer] (Running) > Daemon Thread [finalizer] (Running) > Daemon Thread [finalizer] (Running) > Daemon Thread [finalizer] (Running) > Daemon Thread [finalizer] (Running) > Daemon Thread [finalizer] (Running) > With GCv41 (using -XX:vm.dlls=gc_cc.dll): > HelloWorld [Java Application] > HelloWorld at localhost:1045 > Thread Group [system] > Daemon System Thread [FinalizerThread] (Running) > Thread Group [main] > Thread [main] (Suspended (breakpoint at line 5 in HelloWorld)) > HelloWorld.main(String[]) line: 5 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.