repo.or.cz
/
qemu
/
ar7.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
MAINTAINERS: Cover docs/igd-assign.txt in VFIO section
[qemu/ar7.git]
/
stubs
/
uuid.c
blob
e5112eb3f60470e2c5f1581715ab229cb2b1ca45
1
#include "qemu/osdep.h"
2
#include "qapi/qapi-commands-machine.h"
3
#include "qemu/uuid.h"
4
5
UuidInfo *qmp_query_uuid(Error **errp)
6
{
7
UuidInfo *info = g_malloc0(sizeof(*info));
8
9
info->UUID = g_strdup(UUID_NONE);
10
return info;
11
}
12