Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 43556 invoked from network); 19 Jan 2007 13:20:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Jan 2007 13:20:51 -0000 Received: (qmail 88220 invoked by uid 500); 19 Jan 2007 13:20:20 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 88181 invoked by uid 500); 19 Jan 2007 13:20:20 -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 88152 invoked by uid 99); 19 Jan 2007 13:20:19 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jan 2007 05:20:19 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Jan 2007 05:20:11 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 5B6A41A981A; Fri, 19 Jan 2007 05:18:37 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r497802 - in /harmony/enhanced/drlvm/trunk/vm: include/open/hythread_ext.h include/open/jthread.h thread/src/thread_java_attrs.c thread/src/thread_native_semaphore.c Date: Fri, 19 Jan 2007 13:18:37 -0000 To: commits@harmony.apache.org From: nadinem@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070119131837.5B6A41A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: nadinem Date: Fri Jan 19 05:18:36 2007 New Revision: 497802 URL: http://svn.apache.org/viewvc?view=rev&rev=497802 Log: HARMONY-2351: applying Salikh's patch for thread interface comments Modified: harmony/enhanced/drlvm/trunk/vm/include/open/hythread_ext.h harmony/enhanced/drlvm/trunk/vm/include/open/jthread.h harmony/enhanced/drlvm/trunk/vm/thread/src/thread_java_attrs.c harmony/enhanced/drlvm/trunk/vm/thread/src/thread_native_semaphore.c Modified: harmony/enhanced/drlvm/trunk/vm/include/open/hythread_ext.h URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/include/open/hythread_ext.h?view=diff&rev=497802&r1=497801&r2=497802 ============================================================================== --- harmony/enhanced/drlvm/trunk/vm/include/open/hythread_ext.h (original) +++ harmony/enhanced/drlvm/trunk/vm/include/open/hythread_ext.h Fri Jan 19 05:18:36 2007 @@ -36,10 +36,12 @@ *
  • Support JVMTI * * The middle layer does the following (see hythread.h, hythread_ext.h): + *
      *
    • Provides API for native threading *
    • Wrapping 223shield224 on top of porting layer *
    • Provides support for safe suspension and interrupt *
    • Additional functionality that missed in porting layer + *
    *

    * *

    Interaction

    Modified: harmony/enhanced/drlvm/trunk/vm/include/open/jthread.h URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/include/open/jthread.h?view=diff&rev=497802&r1=497801&r2=497802 ============================================================================== --- harmony/enhanced/drlvm/trunk/vm/include/open/jthread.h (original) +++ harmony/enhanced/drlvm/trunk/vm/include/open/jthread.h Fri Jan 19 05:18:36 2007 @@ -23,7 +23,7 @@ #define _OPEN_THREAD_GENERIC_H /** - * @file jthread_.h + * @file * @brief Java threading interface * @details * Java threading interface - contains functions to work with Java threads. Modified: harmony/enhanced/drlvm/trunk/vm/thread/src/thread_java_attrs.c URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/thread/src/thread_java_attrs.c?view=diff&rev=497802&r1=497801&r2=497802 ============================================================================== --- harmony/enhanced/drlvm/trunk/vm/thread/src/thread_java_attrs.c (original) +++ harmony/enhanced/drlvm/trunk/vm/thread/src/thread_java_attrs.c Fri Jan 19 05:18:36 2007 @@ -55,7 +55,7 @@ /** * Returns daemon status for the specified thread. * - * @param[in] java_thread thread those attribute is read + * @param[in] thread thread those attribute is read */ jboolean jthread_is_daemon(jthread thread) { jvmti_thread_t jvmti_thread; Modified: harmony/enhanced/drlvm/trunk/vm/thread/src/thread_native_semaphore.c URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/thread/src/thread_native_semaphore.c?view=diff&rev=497802&r1=497801&r2=497802 ============================================================================== --- harmony/enhanced/drlvm/trunk/vm/thread/src/thread_native_semaphore.c (original) +++ harmony/enhanced/drlvm/trunk/vm/thread/src/thread_native_semaphore.c Fri Jan 19 05:18:36 2007 @@ -95,7 +95,7 @@ /** * Wait on a semaphore. * - * @param[in] s semaphore to be waited on + * @param[in] sem semaphore to be waited on * @return 0 on success or negative value on failure * * @deprecated Semaphores are no longer supported. @@ -139,7 +139,7 @@ /** * Release a semaphore by 1. * - * @param[in] s semaphore to be released by 1 + * @param[in] sem semaphore to be released by 1 * @return 0 on success or negative value on failure * * @deprecated Semaphores are no longer supported. @@ -221,7 +221,7 @@ * * Returns the resources associated with a semaphore back to the Hy threading library. * - * @param[in] s semaphore to be destroyed + * @param[in] sem semaphore to be destroyed * @return 0 on success or negative value on failure * * @deprecated Semaphores are no longer supported.