hw/misc/edu: Convert to realize()
[qemu/ar7.git] / qobject / qobject.c
bloba3ef14eb55a158083e95d87a3f24eb4f50e574b4
1 /*
2 * QObject
4 * Copyright (C) 2015 Red Hat, Inc.
6 * This work is licensed under the terms of the GNU LGPL, version 2.1
7 * or later. See the COPYING.LIB file in the top-level directory.
8 */
10 #include "qemu-common.h"
11 #include "qapi/qmp/qbool.h"
12 #include "qapi/qmp/qdict.h"
13 #include "qapi/qmp/qfloat.h"
14 #include "qapi/qmp/qint.h"
15 #include "qapi/qmp/qlist.h"
16 #include "qapi/qmp/qstring.h"
18 static void (*qdestroy[QTYPE__MAX])(QObject *) = {
19 [QTYPE_NONE] = NULL, /* No such object exists */
20 [QTYPE_QNULL] = NULL, /* qnull_ is indestructible */
21 [QTYPE_QINT] = qint_destroy_obj,
22 [QTYPE_QSTRING] = qstring_destroy_obj,
23 [QTYPE_QDICT] = qdict_destroy_obj,
24 [QTYPE_QLIST] = qlist_destroy_obj,
25 [QTYPE_QFLOAT] = qfloat_destroy_obj,
26 [QTYPE_QBOOL] = qbool_destroy_obj,
29 void qobject_destroy(QObject *obj)
31 assert(!obj->refcnt);
32 assert(QTYPE_QNULL < obj->type && obj->type < QTYPE__MAX);
33 qdestroy[obj->type](obj);