diff options
Diffstat (limited to 'gdbstub/softmmu.c')
-rw-r--r-- | gdbstub/softmmu.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdbstub/softmmu.c b/gdbstub/softmmu.c index ab2d182..3a5587d 100644 --- a/gdbstub/softmmu.c +++ b/gdbstub/softmmu.c @@ -440,6 +440,15 @@ int gdb_target_memory_rw_debug(CPUState *cpu, hwaddr addr, return cpu_memory_rw_debug(cpu, addr, buf, len, is_write); } +/* + * cpu helpers + */ + +unsigned int gdb_get_max_cpus(void) +{ + MachineState *ms = MACHINE(qdev_get_machine()); + return ms->smp.max_cpus; +} /* * Softmmu specific command helpers |