mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
HMP: add QDict to info callback handler
This patch change all info call back function to take additional QDict * parameter, which allow those command take parameter. Now it is set to NULL at default case. Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
parent
47f4dac3fd
commit
84f2d0ea0f
25 changed files with 84 additions and 83 deletions
|
@ -216,13 +216,13 @@ static void nvram_init(M48t59State *nvram, uint8_t *macaddr,
|
|||
|
||||
static DeviceState *slavio_intctl;
|
||||
|
||||
void sun4m_pic_info(Monitor *mon)
|
||||
void sun4m_pic_info(Monitor *mon, const QDict *qdict)
|
||||
{
|
||||
if (slavio_intctl)
|
||||
slavio_pic_info(mon, slavio_intctl);
|
||||
}
|
||||
|
||||
void sun4m_irq_info(Monitor *mon)
|
||||
void sun4m_irq_info(Monitor *mon, const QDict *qdict)
|
||||
{
|
||||
if (slavio_intctl)
|
||||
slavio_irq_info(mon, slavio_intctl);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue