This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [RFA\JVMTI] Implement GetAllThreads
- From: Tom Tromey <tromey at redhat dot com>
- To: Kyle Galloway <kgallowa at redhat dot com>
- Cc: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 11 Jan 2007 12:51:30 -0700
- Subject: Re: [RFA\JVMTI] Implement GetAllThreads
- References: <45A6B21B.6060107@redhat.com>
- Reply-to: tromey at redhat dot com
>>>>> "Kyle" == Kyle Galloway <kgallowa@redhat.com> writes:
Kyle> * jvmti.cc (_Jv_JVMTI_GetAllThreads): New function.
Kyle> * testsuite/libjava.jvmti/getallthreads.java: New test.
Kyle> * testsuite/libjava.jvmti/natgetallthreads.cc: Ditto.
Kyle> * testsuite/libjava.jvmti/getallthreads.out: Ditto.
Note that when adding a new test case, you must now check in a .jar
file as well. This lets 'make check' work even for folks who haven't
configured with --enable-java-maintainer-mode.
Kyle> + ThreadGroup *parent = thr_grp->getParent ();
This will do a security manager check... do we really want that here?
(I really don't know...)
Tom