2016-01-29 20:49:52 +03:00
|
|
|
#include "qemu/osdep.h"
|
2012-11-16 21:35:27 +04:00
|
|
|
#include "qemu-common.h"
|
2012-12-17 21:20:04 +04:00
|
|
|
#include "sysemu/arch_init.h"
|
2018-02-01 14:18:31 +03:00
|
|
|
#include "qapi/error.h"
|
2012-12-17 21:19:43 +04:00
|
|
|
#include "qapi/qmp/qerror.h"
|
2012-11-16 21:35:27 +04:00
|
|
|
|
|
|
|
CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
|
|
|
|
{
|
2015-03-17 13:54:50 +03:00
|
|
|
error_setg(errp, QERR_UNSUPPORTED);
|
2012-11-16 21:35:27 +04:00
|
|
|
return NULL;
|
|
|
|
}
|