Return-Path: Delivered-To: apmail-incubator-harmony-dev-archive@www.apache.org Received: (qmail 5952 invoked from network); 10 Mar 2006 13:58:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 10 Mar 2006 13:58:10 -0000 Received: (qmail 36279 invoked by uid 500); 10 Mar 2006 13:58:04 -0000 Delivered-To: apmail-incubator-harmony-dev-archive@incubator.apache.org Received: (qmail 36208 invoked by uid 500); 10 Mar 2006 13:58:02 -0000 Mailing-List: contact harmony-dev-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-dev@incubator.apache.org Received: (qmail 36196 invoked by uid 99); 10 Mar 2006 13:58:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Mar 2006 05:58:02 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [216.218.240.193] (HELO pogo.kaffe.org) (216.218.240.193) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Mar 2006 05:58:02 -0800 Received: from robilad by pogo.kaffe.org with local (Exim 3.35 #1 (Debian)) id 1FHhPn-00050O-00 for ; Fri, 10 Mar 2006 05:12:19 -0800 Date: Fri, 10 Mar 2006 05:12:19 -0800 To: harmony-dev@incubator.apache.org Subject: Re: [jchevm] Harmony Class Lib does "Hello World" on a GNU Classpath JVM Message-ID: <20060310131219.GA19157@pogo.kaffe.org> References: <4dd1f3f00603081549o6d47717er39296c53aa662960@mail.gmail.com> <20060310123716.GB14376@bali.sjc.webweaving.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060310123716.GB14376@bali.sjc.webweaving.org> User-Agent: Mutt/1.3.28i From: Dalibor Topic X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Fri, Mar 10, 2006 at 04:37:16AM -0800, Leo Simons wrote: > On Wed, Mar 08, 2006 at 03:49:36PM -0800, Weldon Washburn wrote: > > I can now run the below multithread Hello.java on JCHEVM using Apache > > Harmony Class Library. > > Cool! > contratulations from my side as well, excellent work! cheers, dalibor topic > > Runtime.java -- expected "wrapper" code. e.g., add VMRuntime.exit() to > > Runtime.exit() > > Method.java, Field.java, Constructor.java -- minor mods > > System.java -- added VMSystem.setOut, setErr... etc > > ThreadGroup.java -- wrappers > > Class.java -- wrappers > > Object.java -- wrappers > > String.java -- implemented a very simple intern() > > Thread.java -- added a bunch of fields that JCHEVM accesses, added > > code to start() to create ThreadGroup.root if it does not already > > exist > > Throwable.java -- wrappers > > ClassLoader.java -- commented out "abstract" keyword on class > > definition (too lazy to create a sub-class), added fields that JCHEVM > > accesses, added code getSystemClassLoader to actually create an object > > and stuff it in systemClassLoader if it does not already exist. added > > a bunch of wrapper code. > > OSMemory -- hacked out a bunch of stuff that was in the way > > OSFileSystem -- add an ugly hack in writeImpl() to revector chars to > > Thread.setPriority() > > > > One last item. I don't know which SVN repository to place this work > > in. Any suggestions? > > First step is always to create a patch and put it in jira or send it to > the mailing list. > > I am guessing that with some additional work these kinds of changes can > just go into the trunk/ for the respective source code? > > - LSD