Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 41601 invoked from network); 15 Mar 2007 18:16:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Mar 2007 18:16:51 -0000 Received: (qmail 53653 invoked by uid 500); 15 Mar 2007 18:16:59 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 53618 invoked by uid 500); 15 Mar 2007 18:16:59 -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 53584 invoked by uid 99); 15 Mar 2007 18:16:59 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Mar 2007 11:16:59 -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; Thu, 15 Mar 2007 11:16:50 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 97EDD714087 for ; Thu, 15 Mar 2007 11:16:11 -0700 (PDT) Message-ID: <8450583.1173982571620.JavaMail.jira@brutus> Date: Thu, 15 Mar 2007 11:16:11 -0700 (PDT) From: "Salikh Zakirov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-3288) [drlvm][thread] Use Pthreads/Win32 rather than APR for mutexes and condition variables In-Reply-To: <32670616.1172852751044.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-3288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Salikh Zakirov updated HARMONY-3288: ------------------------------------ Attachment: 0007-Remove-thread-pool-completely.patch > [drlvm][thread] Use Pthreads/Win32 rather than APR for mutexes and condition variables > -------------------------------------------------------------------------------------- > > Key: HARMONY-3288 > URL: https://issues.apache.org/jira/browse/HARMONY-3288 > Project: Harmony > Issue Type: Improvement > Components: DRLVM > Reporter: Salikh Zakirov > Assigned To: weldon washburn > Attachments: 0001-allocate-monitors-latches-and-semaphores-from-C-heap.patch, 0002-Introduce-OS-layer-for-thread-functions-instead-of-APR.patch, 0003-Fix-cunit-tests-to-pass-a-valid-stack-size-attribute.patch, 0004-Rewrite-hymutex-and-hycond-to-use-OS-layer-instead-of-APR.patch, 0005-fixed-callers-of-hymutex-and-hycond-to-use-address.patch, 0006-Remove-thread-local-pool.patch, 0007-Remove-thread-pool-completely.patch, 0008-replaced-apr_get_thread_time-s-with-hythread_get_thread_times.patch, 0009-Add-assertions-on-os_handle.patch, 0010-Fix-cunit-test-linking-with-APR-problem.patch > > > Currently DRLVM uses APR mutexes and condition variables. These require APR memory pools to be allocated from, > and releasing memory pools may be tricky at times. For example, the memory lifecycle of the native monitor is associated > with the java object lifecycle, thus requires a specific object-specific pool. While this solution is possible, it will incur > significant memory overhead. > The attached patch series proposes a simplified model by using Pthreads or Win32 interfaces directly, without layering APR. > It allows for explicit memory allocation and deallocation, and makes fixing thread memory model much easier. > The patch series is incomplete, as it still uses APR thread creation APIs, and thus APR pools are still created for every thread. > I will work further to remove this dependency as well. > The patches -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.