projects
/
sdk
/
emulator
/
qemu.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge remote-tracking branch 'qemu-kvm/uq/master' into staging
[sdk/emulator/qemu.git]
/
stubs
/
arch-query-cpu-def.c
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
}