Return values for debugger_t::check_bpt.
|
|
#define | BPT_OK 0 |
| | breakpoint can be set
|
| |
|
#define | BPT_INTERNAL_ERR 1 |
| | interr occurred when verifying breakpoint
|
| |
|
#define | BPT_BAD_TYPE 2 |
| | bpt type is not supported
|
| |
|
#define | BPT_BAD_ALIGN 3 |
| | alignment is invalid
|
| |
|
#define | BPT_BAD_ADDR 4 |
| | ea is invalid
|
| |
|
#define | BPT_BAD_LEN 5 |
| | bpt len is invalid
|
| |
|
#define | BPT_TOO_MANY 6 |
| | reached max number of supported breakpoints
|
| |
|
#define | BPT_READ_ERROR 7 |
| | failed to read memory at bpt ea
|
| |
|
#define | BPT_WRITE_ERROR 8 |
| | failed to write memory at bpt ea
|
| |
|
#define | BPT_SKIP 9 |
| | update_bpts(): do not process bpt
|
| |
|
#define | BPT_PAGE_OK 10 |
| | update_bpts(): ok, added a page bpt
|
| |