diff options
author | Yao Qi <yao@codesourcery.com> | 2013-07-27 07:11:46 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2013-07-27 07:11:46 +0000 |
commit | de6f69ad33e8330582d48b4410521d8998c0c882 (patch) | |
tree | bf3dd2fe3ec659caf07a05e1bc8fd1b4b99b4108 /gdb/gdbserver | |
parent | e21b1c5ffda963603b48aefad2b90ffbc3d071b7 (diff) | |
download | gdb-de6f69ad33e8330582d48b4410521d8998c0c882.zip gdb-de6f69ad33e8330582d48b4410521d8998c0c882.tar.gz gdb-de6f69ad33e8330582d48b4410521d8998c0c882.tar.bz2 |
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/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbserver/i386-low.c | 9 |
2 files changed, 6 insertions, 8 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 4af17ef..426e2ba 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2013-07-27 Yao Qi <yao@codesourcery.com> + + * i386-low.c: Include break-common.h. + (enum target_hw_bp_type): Remove. + 2013-07-24 Luis Machado <lgustavo@codesourcery.com> * Makefile.in (SFILES): /common/target-common.c. diff --git a/gdb/gdbserver/i386-low.c b/gdb/gdbserver/i386-low.c index 86ec5d8..4eacda0 100644 --- a/gdb/gdbserver/i386-low.c +++ b/gdb/gdbserver/i386-low.c @@ -20,6 +20,7 @@ #include "server.h" #include "target.h" #include "i386-low.h" +#include "break-common.h" /* Support for 8-byte wide hw watchpoints. */ #ifndef TARGET_HAS_DR_LEN_8 @@ -27,14 +28,6 @@ #define TARGET_HAS_DR_LEN_8 (sizeof (void *) == 8) #endif -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 */ - }; - /* DR7 Debug Control register fields. */ /* How many bits to skip in DR7 to get to R/W and LEN fields. */ |