diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-18 20:37:55 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-18 20:37:55 +0000 |
commit | 6e140f28c683578b9f94a19ba345d21b00bd41a8 (patch) | |
tree | 46144cada2cd69f0d3cbd42d8b9959a73db1e2d3 /cpu-all.h | |
parent | gdbstub: manage CPUs as threads (Jan Kiszka) (diff) | |
download | qemu-kvm-6e140f28c683578b9f94a19ba345d21b00bd41a8.tar.gz qemu-kvm-6e140f28c683578b9f94a19ba345d21b00bd41a8.tar.bz2 qemu-kvm-6e140f28c683578b9f94a19ba345d21b00bd41a8.zip |
Introduce BP_WATCHPOINT_HIT flag (Jan Kiszka)
When one watchpoint is hit, others might have triggered as well. To
support users of the watchpoint API which need to detect such cases,
the BP_WATCHPOINT_HIT flag is introduced and maintained.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5744 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-all.h')
-rw-r--r-- | cpu-all.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -766,6 +766,7 @@ void cpu_reset_interrupt(CPUState *env, int mask); #define BP_MEM_WRITE 0x02 #define BP_MEM_ACCESS (BP_MEM_READ | BP_MEM_WRITE) #define BP_STOP_BEFORE_ACCESS 0x04 +#define BP_WATCHPOINT_HIT 0x08 #define BP_GDB 0x10 int cpu_breakpoint_insert(CPUState *env, target_ulong pc, int flags, |