mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:56:38 +00:00
We use 'HMP' for Human monitor and 'QMP' for 'Machine protocol'. These files aren't about human monitor but QMP, so rename them for clarity using the 'qmp-' prefix instead of 'monitor-'. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Acked-by: Eric Farman <farman@linux.ibm.com> Message-Id: <20260427080738.77138-6-philmd@linaro.org>
24 lines
672 B
C
24 lines
672 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "qapi/error.h"
|
|
#include "qapi/qapi-commands-machine.h"
|
|
|
|
CpuModelCompareInfo *
|
|
qmp_query_cpu_model_comparison(CpuModelInfo *infoa,
|
|
CpuModelInfo *infob,
|
|
Error **errp)
|
|
{
|
|
error_setg(errp, "CPU model comparison is not supported on this target");
|
|
return NULL;
|
|
}
|
|
|
|
CpuModelBaselineInfo *
|
|
qmp_query_cpu_model_baseline(CpuModelInfo *infoa,
|
|
CpuModelInfo *infob,
|
|
Error **errp)
|
|
{
|
|
error_setg(errp, "CPU model baseline is not supported on this target");
|
|
return NULL;
|
|
}
|