This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [RFA] JVMTI/JDWP GetAllLoadedClasses
- From: Tom Tromey <tromey at redhat dot com>
- To: Kyle Galloway <kgallowa at redhat dot com>
- Cc: Keith Seitz <keiths at redhat dot com>, Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 24 Apr 2007 15:20:18 -0600
- Subject: Re: [RFA] JVMTI/JDWP GetAllLoadedClasses
- References: <462E280A.4070206@redhat.com> <462E4B63.8010906@redhat.com> <462E4C42.5020402@redhat.com>
- Reply-to: tromey at redhat dot com
>>>>> "Kyle" == Kyle Galloway <kgallowa@redhat.com> writes:
>> One cursory question: Is there no gnu/gcj/jvmti/ClassList.java?
Kyle> Probably should have mentioned this, but no, there is no
Kyle> ClassList.java, these are all static native methods. As I mentioned,
Kyle> it's a little tricky to deal with the class loading order, so I
Kyle> figured one less java class would be a benefit.
Ok, in this case we should not have ClassList declared as 'extern "Java"'.
I think it would be better to just declare a new HashSet or the like
in VMClassLoader and put the references there.
Keith, thanks for pointing this out.
Tom