aboutsummaryrefslogtreecommitdiff
path: root/stubs/monitor-cpu.c
blob: a8c7ee89b9d16c9e84bfb5396dcc7427789d2e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: GPL-2.0-or-later */

#include "qemu/osdep.h"
#include "qapi/error.h"
#include "qapi/qapi-commands-machine.h"

CpuModelExpansionInfo *
qmp_query_cpu_model_expansion(CpuModelExpansionType type,
                              CpuModelInfo *model,
                              Error **errp)
{
    error_setg(errp, "CPU model expansion is not supported on this target");
    return NULL;
}

CpuDefinitionInfoList *
qmp_query_cpu_definitions(Error **errp)
{
    error_setg(errp, "CPU model definitions are not supported on this target");
    return NULL;
}