Statistics
| Branch: | Revision:

root / stubs / arch-query-cpu-def.c @ 9c17d615

History | View | Annotate | Download (211 Bytes)

1
#include "qemu-common.h"
2
#include "sysemu/arch_init.h"
3
#include "qapi/qmp/qerror.h"
4

    
5
CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
6
{
7
    error_set(errp, QERR_NOT_SUPPORTED);
8
    return NULL;
9
}