Exemplo n.º 1
0
 public GdbBreakpoint(GdbBreakpointType type, ulong address) : this(type, address, 1)
 {
 }
Exemplo n.º 2
0
 public GdbBreakpoint(GdbBreakpointType type, ulong address, int kind)
 {
     Type    = type;
     Address = address;
     Kind    = kind;
 }
Exemplo n.º 3
0
            public void Add(GdbBreakpointType type, ulong address, int kind)
            {
                GdbBreakpoint breakpoint = new GdbBreakpoint(type, address, kind);

                Add(breakpoint);
            }