Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 74693 invoked from network); 5 Apr 2006 05:17:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Apr 2006 05:17:47 -0000 Received: (qmail 10706 invoked by uid 500); 5 Apr 2006 05:17:47 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 10628 invoked by uid 500); 5 Apr 2006 05:17:47 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 10617 invoked by uid 99); 5 Apr 2006 05:17:46 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Apr 2006 22:17:46 -0700 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 [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 04 Apr 2006 22:17:46 -0700 Received: (qmail 74606 invoked by uid 65534); 5 Apr 2006 05:17:26 -0000 Message-ID: <20060405051726.74605.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r391508 - /incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/object.h Date: Wed, 05 Apr 2006 05:17:25 -0000 To: harmony-commits@incubator.apache.org From: dlydick@apache.org X-Mailer: svnmailer-1.0.7 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: dlydick Date: Tue Apr 4 22:17:23 2006 New Revision: 391508 URL: http://svn.apache.org/viewcvs?rev=391508&view=rev Log: Adjusted array length definition. Minor comment changes. Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/object.h Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/object.h URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/object.h?rev=391508&r1=391507&r2=391508&view=diff ============================================================================== --- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/object.h (original) +++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/object.h Tue Apr 4 22:17:23 2006 @@ -237,10 +237,12 @@ /*! * @todo HARMONY-6-jvm-object.h-1 Is @c @b arraylength necessary? */ - jint *arraylength; /**< Length of array in @e each - * dimension, from this one on down - * to object instances. Meaningful - * only when when @link + jint arraylength; /**< First dimension of an array of + * length @c @b arraydims as passed in + * to object_instance_new(), which + * contains the length of array in each + * of those dimensions. + * Meaningful only when when @link #OBJECT_STATUS_ARRAY OBJECT_STATUS_ARRAY@endlink is set */ @@ -268,7 +270,8 @@ */ jvm_object_hash objhash_superclass; /**< Instance of - * of this object's superclass. + * of this object's superclass, namely + * the @c @b super object. * @link #JVMCFG_NULL_OBJECT JVMCFG_NULL_OBJECT@endlink indicates * that the parent class is a