This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: initialization (again)
- From: Tom Tromey <tromey at redhat dot com>
- To: Nic Ferrier <nferrier at tapsellferrier dot co dot uk>
- Cc: java at gcc dot gnu dot org
- Date: 05 Mar 2002 12:46:00 -0700
- Subject: Re: initialization (again)
- References: <87u1ssa91o.fsf@tf1.tapsellferrier.co.uk>
- Reply-to: tromey at redhat dot com
>>>>> "Nic" == Nic Ferrier <nferrier@tapsellferrier.co.uk> writes:
Nic> A while ago we had a discussion about gij argument parsing.
Nic> I was saying that I'd written a non-getopt arg parser that could
Nic> possibly be used to make a sun-java-tool compliant gij.
I never saw a response to this.
Nic> Here are my questions:
Nic> - should there be a Jv_CreateJavaVM which calls _Jv_CreateJavaVM ?
Ordinarily the CNI method would have no underscores.
So it would be JvCreateJavaVM.
Nic> - if gij were to call _Jv_CreateJavaVM how would it pass the argv to
Nic> it?
Good question. The general idea is to have a CNI function be
similar to the corresponding JNI function.
Nic> - should Jv_CreateJavaVM have arguments for recieving the argv?
Yes.
Note that gij will probably need to duplicate some of the processing
in order to have --help and --version continue to work.
Tom