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