This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [RFA/JVMTI] Thread start/end notifications
- From: Tom Tromey <tromey at redhat dot com>
- To: Keith Seitz <keiths at redhat dot com>
- Cc: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 16 Jan 2007 10:34:55 -0700
- Subject: Re: [RFA/JVMTI] Thread start/end notifications
- References: <45AC7B4F.2070805@redhat.com>
- Reply-to: tromey at redhat dot com
>>>>> "Keith" == Keith Seitz <keiths@redhat.com> writes:
Keith> The attached patch adds JVMTI event notifications for thread start and
Keith> end. I simply put them in the same places where the JVMPI
Keith> notifications were placed.
Keith> Ok?
This is ok.
Keith> + JNIEnv *jni_env = reinterpret_cast<JNIEnv *> (nt->jni_env);
I wonder why jni_env is declared as void* and not JNIEnv*.
The latter would be cleaner.
Tom