diff options
author | Kevin Wolf <kwolf@redhat.com> | 2020-11-13 12:43:24 +0100 |
---|---|---|
committer | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2020-11-13 12:45:35 +0000 |
commit | 2fc5d01bb43049851a95c8a66df7ee33e3489b54 (patch) | |
tree | 1e74f5edf47a4672ba529ae05f536a1abf0aa5fd /include/monitor/hmp-target.h | |
parent | be2df2ac6f6b9eeee21cc057de0a119ac30fbc60 (diff) |
hmp: Pass monitor to mon_get_cpu()
mon_get_cpu() is indirectly called monitor_parse_arguments() where
the current monitor isn't set yet. Instead of using monitor_cur(),
explicitly pass the Monitor pointer to the function.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Message-Id: <20201113114326.97663-2-kwolf@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'include/monitor/hmp-target.h')
-rw-r--r-- | include/monitor/hmp-target.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/monitor/hmp-target.h b/include/monitor/hmp-target.h index 8b7820a3ad..519616d1fb 100644 --- a/include/monitor/hmp-target.h +++ b/include/monitor/hmp-target.h @@ -41,7 +41,7 @@ const MonitorDef *target_monitor_defs(void); int target_get_monitor_def(CPUState *cs, const char *name, uint64_t *pval); CPUArchState *mon_get_cpu_env(void); -CPUState *mon_get_cpu(void); +CPUState *mon_get_cpu(Monitor *mon); void hmp_info_mem(Monitor *mon, const QDict *qdict); void hmp_info_tlb(Monitor *mon, const QDict *qdict); |