This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [RFA/JDWP] Implement several JDWP callbacks
- 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: 26 Jan 2007 14:32:15 -0700
- Subject: Re: [RFA/JDWP] Implement several JDWP callbacks
- References: <45B97823.40203@redhat.com>
- Reply-to: tromey at redhat dot com
>>>>> "Keith" == Keith Seitz <keiths@redhat.com> writes:
Keith> This patch implements the JDWP callbacks for the JVMTI events
Keith> ClassPrepare, ThreadStart, ThreadEnd, and VMDeath. These are all
Keith> simple callbacks which don't really do much more than send a packet
Keith> down the wire to the debugger.
Keith> Ok?
Yes, thanks.
Keith> + jthread thread, jclass klass)
[...]
Keith> + Thread *t = reinterpret_cast<Thread *> (thread);
Is there a way we can define jthread == Thread* for internal purposes,
so we can get rid of these casts?
Tom