aboutsummaryrefslogtreecommitdiff
path: root/stubs/arch-query-cpu-def.c
blob: a975ab453a3785482db158b451f088238436416a (plain)
1
2
3
4
5
6
7
8
9
#include "qemu-common.h"
#include "sysemu/arch_init.h"
#include "qapi/qmp/qerror.h"

CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
{
    error_setg(errp, QERR_UNSUPPORTED);
    return NULL;
}