summaryrefslogtreecommitdiff
path: root/gdb/monitor.h
diff options
context:
space:
mode:
authorJason Molenda <jsm@bugshack.cygnus.com>1999-05-19 19:58:41 +0000
committerJason Molenda <jsm@bugshack.cygnus.com>1999-05-19 19:58:41 +0000
commit5b0c93841c40a662962b4c3e985268f5f20ba912 (patch)
treeecb39d36e08a4e4d4926e19325d9a049b15d08a5 /gdb/monitor.h
parentdefc435d0bf4ac05ac0d74aad1c42342b56eccbe (diff)
downloadgdb-5b0c93841c40a662962b4c3e985268f5f20ba912.tar.gz
import gdb-1999-0519
Diffstat (limited to 'gdb/monitor.h')
-rw-r--r--gdb/monitor.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/monitor.h b/gdb/monitor.h
index 4ccddd59e6b..927d58724c5 100644
--- a/gdb/monitor.h
+++ b/gdb/monitor.h
@@ -78,7 +78,8 @@ struct monitor_ops
char *cont; /* continue command */
char *step; /* single step */
char *stop; /* Interrupt program string */
- char *set_break; /* set a breakpoint */
+ char *set_break; /* set a breakpoint. If NULL, monitor implementation
+ sets its own to_insert_breakpoint method. */
char *clr_break; /* clear a breakpoint */
char *clr_all_break; /* Clear all breakpoints */
char *fill; /* Memory fill cmd (addr len val) */
@@ -111,6 +112,8 @@ struct monitor_ops
struct target_ops *target; /* target operations */
int stopbits; /* number of stop bits */
char **regnames; /* array of register names in ascii */
+ int num_breakpoints; /* If set_break != NULL, number of supported
+ breakpoints */
int magic; /* Check value */
};