Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 1926 invoked from network); 28 Jan 2008 02:49:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Jan 2008 02:49:55 -0000 Received: (qmail 70604 invoked by uid 500); 28 Jan 2008 02:49:46 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 70585 invoked by uid 500); 28 Jan 2008 02:49:46 -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 70576 invoked by uid 99); 28 Jan 2008 02:49:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 27 Jan 2008 18:49:46 -0800 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 Jan 2008 02:49:28 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 2D534714233 for ; Sun, 27 Jan 2008 18:49:35 -0800 (PST) Message-ID: <18773378.1201488575183.JavaMail.jira@brutus> Date: Sun, 27 Jan 2008 18:49:35 -0800 (PST) From: "Ilya Berezhniuk (JIRA)" To: commits@harmony.apache.org Subject: [jira] Created: (HARMONY-5434) [drlvm][jit] Crash in reliability.api.kernel.thread.ThreadSuspendResume.ThreadSuspendResume MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [drlvm][jit] Crash in reliability.api.kernel.thread.ThreadSuspendResume.ThreadSuspendResume ------------------------------------------------------------------------------------------- Key: HARMONY-5434 URL: https://issues.apache.org/jira/browse/HARMONY-5434 Project: Harmony Issue Type: Bug Components: DRLVM Environment: Linux/x86_64 Reporter: Ilya Berezhniuk I've got an intermittent crash in ThreadSuspendResume test on 16-core Linux/x86_64 machine. It occurs every ~5-10 run for me. I've checked on 4-core machine - the same crash occured on 35th run. Crash occurs for me in address 0x00002aaabd473da0; it belongs to memory area "2aaaae568000-2aaabd56b000 ---p", i.e. without read/write/execution rights. Investigation shows that this address is called from the code: ---------------- 0x2aaabe473cb5: test %al,(%rax) 0x2aaabe473cb7: add %al,(%rax) 0x2aaabe473cb9: add %al,(%rax) 0x2aaabe473cbb: nop 0x2aaabe473cbc: callq 0x2aaabe473da0 <================= 0x2aaabe473cc1: add $0x8,%rsp 0x2aaabe473cc8: mov %eax,%r12d ---------------- This code belongs to java.util.Random.nextDouble method. So the crash is probably because of race condition in compilation - or probably in something else... -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.