This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [RFA] Add NormalBreakpoint
- 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: Wed, 13 Jun 2007 15:52:07 -0600
- Subject: Re: [RFA] Add NormalBreakpoint
- References: <466EF859.5010103@redhat.com>
- Reply-to: tromey at redhat dot com
>>>>> "Keith" == Keith Seitz <keiths@redhat.com> writes:
Keith> I've been working on getting VMVM.executeMethod working, and I need to
Keith> refactor our breakpoint support. The attached patch breaks
Keith> gnu.gcj.jvmti.Breakpoint into two classes. "Breakpoint" will be a base
Keith> class for breakpoint classes. "NormalBreakpoint" is (as it sounds) a
Keith> "normal" breakpoint. Functionally this patch is a nop.
This is fine by me but I do have one question.
Keith> public class Breakpoint
Keith> {
Keith> + // Type of this breakpoint
Keith> + protected int type;
What is this field intended for?
Right now it is only set to NormalBreakpoint.TYPE.
Tom