summaryrefslogtreecommitdiff
path: root/gdb/breakpoint.h
diff options
context:
space:
mode:
authorqiyao <qiyao>2013-07-27 07:11:46 +0000
committerqiyao <qiyao>2013-07-27 07:11:46 +0000
commita0d6284f9fc398f68c394f8e155d8976bcd55ee4 (patch)
treedb9a015b2aa210bdda2185fb54831f6f74791e05 /gdb/breakpoint.h
parent10b6767bcdf2555fb9799f07ccd6777baa72ffe3 (diff)
downloadgdb-a0d6284f9fc398f68c394f8e155d8976bcd55ee4.tar.gz
gdb/
* breakpoint.h: Include break-common.h. (enum target_hw_bp_type): Move to ... * common/break-common.h: ... here. New. gdb/gdbserver/ * i386-low.c: Include break-common.h. (enum target_hw_bp_type): Remove.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r--gdb/breakpoint.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h
index 374164c9df5..faedb4a7eae 100644
--- a/gdb/breakpoint.h
+++ b/gdb/breakpoint.h
@@ -24,6 +24,7 @@
#include "vec.h"
#include "ax.h"
#include "command.h"
+#include "break-common.h"
struct value;
struct block;
@@ -215,15 +216,6 @@ enum bpdisp
disp_donttouch /* Leave it alone */
};
-enum target_hw_bp_type
- {
- hw_write = 0, /* Common HW watchpoint */
- hw_read = 1, /* Read HW watchpoint */
- hw_access = 2, /* Access HW watchpoint */
- hw_execute = 3 /* Execute HW breakpoint */
- };
-
-
/* Status of breakpoint conditions used when synchronizing
conditions with the target. */