diff options
| author | Peter Maydell | 2014-09-12 15:06:48 +0200 |
|---|---|---|
| committer | Peter Maydell | 2014-09-12 15:06:48 +0200 |
| commit | 86025ee4438e6e46eed767aad7c17ea94bb5c19b (patch) | |
| tree | 450e897472d473d11dc8a0369660fee861bb70cb /qom | |
| parent | exec.c: Record watchpoint fault address and direction (diff) | |
| download | qemu-86025ee4438e6e46eed767aad7c17ea94bb5c19b.tar.gz qemu-86025ee4438e6e46eed767aad7c17ea94bb5c19b.tar.xz qemu-86025ee4438e6e46eed767aad7c17ea94bb5c19b.zip | |
cpu-exec: Make debug_excp_handler a QOM CPU method
Make the debug_excp_handler target specific hook into a QOM
CPU method.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'qom')
| -rw-r--r-- | qom/cpu.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -202,6 +202,10 @@ static bool cpu_common_virtio_is_big_endian(CPUState *cpu) return target_words_bigendian(); } +static void cpu_common_debug_excp_handler(CPUState *cpu) +{ +} + void cpu_dump_state(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf, int flags) { @@ -340,6 +344,7 @@ static void cpu_class_init(ObjectClass *klass, void *data) k->gdb_read_register = cpu_common_gdb_read_register; k->gdb_write_register = cpu_common_gdb_write_register; k->virtio_is_big_endian = cpu_common_virtio_is_big_endian; + k->debug_excp_handler = cpu_common_debug_excp_handler; dc->realize = cpu_common_realizefn; /* * Reason: CPUs still need special care by board code: wiring up |
