container: make a decendent of Object

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
---
v1 -> v2
 - Add license (Paolo)
This commit is contained in:
Anthony Liguori 2011-12-23 09:08:05 -06:00
parent db85b575b9
commit 8b45d447ce
6 changed files with 39 additions and 44 deletions

View file

@ -662,14 +662,13 @@ const char *object_property_get_type(Object *obj, const char *name, Error **errp
Object *object_get_root(void)
{
static DeviceState *object_root;
static Object *root;
if (!object_root) {
object_root = qdev_create(NULL, "container");
qdev_init_nofail(object_root);
if (!root) {
root = object_new("container");
}
return OBJECT(object_root);
return root;
}
static void object_get_child_property(Object *obj, Visitor *v, void *opaque,