#include <breakpoints.H>
Public Member Functions | |
Breakpoints (int quant) | |
~Breakpoints () | |
int | add (unsigned int address) |
int | exists (unsigned int address) |
int | remove (unsigned int address) |
Protected Attributes | |
unsigned int * | bp |
int | quantMax |
int | quant |
Keep breakpoints in crescent order, can check if a given breakpoint exists. It's fixed size.
Definition at line 49 of file breakpoints.H.
|
Constructor
Definition at line 41 of file breakpoints.cpp. |
|
Destructor Definition at line 57 of file breakpoints.cpp. References bp. |
|
Add breakpoint at address
Definition at line 70 of file breakpoints.cpp. |
|
Check if breakpoint exists
Definition at line 124 of file breakpoints.cpp. References bp, quant, and quantMax. Referenced by AC_GDB::stop(). |
|
Remove breakpoint at address
Definition at line 97 of file breakpoints.cpp. |
|
breakpoint array Definition at line 58 of file breakpoints.H. Referenced by add(), Breakpoints(), exists(), remove(), and ~Breakpoints(). |
|
current count Definition at line 60 of file breakpoints.H. |
|
Maximum supported breakpoints, that is, the parameter given to constructor Definition at line 59 of file breakpoints.H. Referenced by add(), Breakpoints(), exists(), and remove(). |