aboutsummaryrefslogtreecommitdiff
path: root/stubs/arch-query-cpu-def.c
blob: 22e0b43de947be93eaec93dd5a8deba705545a27 (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_set(errp, QERR_UNSUPPORTED);
    return NULL;
}