summaryrefslogtreecommitdiff
path: root/stubs/arch-query-cpu-def.c
blob: fa6789598acfa9c196f08fbd55429248d4c29d07 (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_NOT_SUPPORTED);
    return NULL;
}