Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 94740 invoked from network); 4 Nov 2005 20:51:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 4 Nov 2005 20:51:01 -0000 Received: (qmail 24394 invoked by uid 500); 4 Nov 2005 20:51:01 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 24348 invoked by uid 500); 4 Nov 2005 20:51:00 -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 24331 invoked by uid 99); 4 Nov 2005 20:51:00 -0000 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; Fri, 04 Nov 2005 12:51:00 -0800 Received: (qmail 94664 invoked by uid 65534); 4 Nov 2005 20:50:40 -0000 Message-ID: <20051104205040.94663.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r330891 - /incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/jvm.h Date: Fri, 04 Nov 2005 20:50:40 -0000 To: harmony-commits@incubator.apache.org From: dlydick@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: dlydick Date: Fri Nov 4 12:50:31 2005 New Revision: 330891 URL: http://svn.apache.org/viewcvs?rev=330891&view=rev Log: Added variables to retain crutical initialization class indices Moved prototype of jvm() to 'jvm/include/arch.h' Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/jvm.h Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/jvm.h URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/jvm.h?rev=330891&r1=330890&r2=330891&view=diff ============================================================================== --- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/jvm.h (original) +++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/jvm.h Fri Nov 4 12:50:31 2005 @@ -198,6 +198,21 @@ * allocated by * class_static_new() */ + jvm_class_index class_java_lang_Object; /**< Class slot occupied + * by java.lang.Object */ + + jvm_class_index class_primative_char; /**< Class slot occupied + * by (char) */ + + jvm_class_index class_java_lang_Class; /**< Class slot occupied + * by java.lang.Class */ + + jvm_class_index class_java_lang_String; /**< Class slot occupied + * by java.lang.String */ + + jvm_class_index class_java_lang_Thread; /**< Class slot occupied + * by java.lang.Thread */ + rclass class[JVMCFG_MAX_CLASSES]; /**< Table of java.lang.Class * structures. Indexed by @@ -244,8 +259,6 @@ rchar *clsname, rchar *mthname, rchar *mthdesc); - -extern rint jvm(int argc, char **argv, char **envp); #endif /* _jvm_h_included_ */