Return-Path: Delivered-To: apmail-incubator-harmony-dev-archive@www.apache.org Received: (qmail 100 invoked from network); 6 Oct 2006 07:17:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 6 Oct 2006 07:17:55 -0000 Received: (qmail 61248 invoked by uid 500); 6 Oct 2006 07:17:52 -0000 Delivered-To: apmail-incubator-harmony-dev-archive@incubator.apache.org Received: (qmail 61199 invoked by uid 500); 6 Oct 2006 07:17:52 -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 61188 invoked by uid 99); 6 Oct 2006 07:17:52 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Oct 2006 00:17:52 -0700 Authentication-Results: idunn.apache.osuosl.org header.from=alexey.v.varlamov@gmail.com; domainkeys=good X-ASF-Spam-Status: No, hits=0.5 required=5.0 tests=DNS_FROM_RFC_ABUSE DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 Received: from [66.249.82.227] ([66.249.82.227:2964] helo=wx-out-0506.google.com) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id 6D/00-17714-E1306254 for ; Fri, 06 Oct 2006 00:17:51 -0700 Received: by wx-out-0506.google.com with SMTP id s13so836853wxc for ; Fri, 06 Oct 2006 00:17:48 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=YABXTpQHl0yRQjTZ5wnToM0s0PrG8PLpK4WYFacWW3dX2JquHYEwgfI5ZdqhKAiGQF5pZf5J/TGCo7Qaku3+MqmKpdHvcrF8eu+VBRrf3kVp4WNJJF7eF1IMOKUEwyRSiFDox+p7onJ/4eeshlJwIsUzcKbxcINVCVh2Ncqw62g= Received: by 10.70.32.13 with SMTP id f13mr4859177wxf; Fri, 06 Oct 2006 00:17:48 -0700 (PDT) Received: by 10.70.23.14 with HTTP; Fri, 6 Oct 2006 00:17:48 -0700 (PDT) Message-ID: Date: Fri, 6 Oct 2006 14:17:48 +0700 From: "Alexey Varlamov" To: harmony-dev@incubator.apache.org, geir@pobox.com Subject: Re: [drlvm] too tired, need help In-Reply-To: <4525EB2E.6020301@pobox.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4525EB2E.6020301@pobox.com> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 2006/10/6, Geir Magnusson Jr. : > I'm trying to trace through the boot sequence chasing some boot > classpath property thing (luniglob sets it, and I can't figure how it > gets to us...), and I'm too tired, too dumb, or both to figure this out. Geir, To avoid possible duplication - there is HARMONY-1626 about smth very similar, and I'm ready to submit a patch, just waiting for H-1582. > > Launcher calls JNI_CreateJavaVM. In our vmcore/src/jni/jni.cpp, we > define it, and it is : > > VMEXPORT jint > JNICALL JNI_CreateJavaVM(JavaVM **p_vm, JNIEnv **p_env, void *vm_args) { > > static int called = 0; > > init_log_system(); > TRACE2("jni", "CreateJavaVM called"); > if (called) { > ASSERT(0, "Not implemented"); > return JNI_ERR; > } else { > create_vm(&env, (JavaVMInitArgs *)vm_args); > *p_env = &jni_env; > *p_vm = jni_env.vm; > return JNI_OK; > } > } > > For the life of me, I can't figure out where "env" is defined or set. > create_vm() uses it... > > Can anyone give me a hint? Eclipse's C++ plugin seems to be useless here... > > geir > > --------------------------------------------------------------------- > Terms of use : http://incubator.apache.org/harmony/mailing.html > To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org > For additional commands, e-mail: harmony-dev-help@incubator.apache.org > > --------------------------------------------------------------------- Terms of use : http://incubator.apache.org/harmony/mailing.html To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org For additional commands, e-mail: harmony-dev-help@incubator.apache.org