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