Re: JVMInit function call - where is it located the source?

2018-08-21 Thread mr rupplin
Ok, David. Great, you did it. From: David Holmes Sent: Tuesday, August 21, 2018 9:38:06 PM To: mr rupplin; core-libs-dev@openjdk.java.net; Andrew Haley Subject: Re: JVMInit function call - where is it located the source? On 22/08/2018 11:02 AM, mr rupplin wrote

Re: JVMInit function call - where is it located the source?

2018-08-21 Thread David Holmes
ll - where is it located the source? Thanks. Get Outlook for Android<https://aka.ms/ghei36> From: Andrew Haley Sent: Tuesday, August 21, 2018 12:32:20 PM To: mr rupplin; core-libs-dev@openjdk.java.net Subject: Re: JVMInit function call - where is it lo

Re: JVMInit function call - where is it located the source?

2018-08-21 Thread mr rupplin
6:37:30 PM To: core-libs-dev@openjdk.java.net; Andrew Haley Subject: Re: JVMInit function call - where is it located the source? Thanks. Get Outlook for Android<https://aka.ms/ghei36> From: Andrew Haley Sent: Tuesday, August 21, 2018 12:32:20 PM To: mr ruppli

Re: JVMInit function call - where is it located the source?

2018-08-21 Thread mr rupplin
Thanks. Get Outlook for Android<https://aka.ms/ghei36> From: Andrew Haley Sent: Tuesday, August 21, 2018 12:32:20 PM To: mr rupplin; core-libs-dev@openjdk.java.net Subject: Re: JVMInit function call - where is it located the source? On 08/21/2018 05:21

Re: JVMInit function call - where is it located the source?

2018-08-21 Thread Andrew Haley
On 08/21/2018 05:21 PM, mr rupplin wrote: > Inside java.c there is a JLI_Launch which purports to be the launching or > entry point for the JVM. The last line shows: > > > return JVMInit(, threadStackSize, argc, argv, mode, what, ret); > > > This is given apparently as a function call that

Re: JVMInit function call - where is it located the source?

2018-08-21 Thread Aleksey Shipilev
Hi, I think you need to freshen up the search-fu: find, grep, and ack (beyondgrep). Without it, you would find understanding the structure of any large project, OpenJDK included, quite frustrating. On 08/21/2018 06:21 PM, mr rupplin wrote: > This is given apparently as a function call that

Re: JVMInit function call - where is it located the source?

2018-08-21 Thread Jonathan Gibbons
On 8/21/18 9:21 AM, mr rupplin wrote: Inside java.c there is a JLI_Launch which purports to be the launching or entry point for the JVM. The last line shows: return JVMInit(, threadStackSize, argc, argv, mode, what, ret); This is given apparently as a function call that will return an

JVMInit function call - where is it located the source?

2018-08-21 Thread mr rupplin
Inside java.c there is a JLI_Launch which purports to be the launching or entry point for the JVM. The last line shows: return JVMInit(, threadStackSize, argc, argv, mode, what, ret); This is given apparently as a function call that will return an int. However the include file java.h shows