Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20190714' into staging
[qemu/ar7.git] / qobject / qbool.c
blob06dfc43498117c2e8c5a59fc36289b68ac90079f
1 /*
2 * QBool Module
4 * Copyright IBM, Corp. 2009
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "qapi/qmp/qbool.h"
17 /**
18 * qbool_from_bool(): Create a new QBool from a bool
20 * Return strong reference.
22 QBool *qbool_from_bool(bool value)
24 QBool *qb;
26 qb = g_malloc(sizeof(*qb));
27 qobject_init(QOBJECT(qb), QTYPE_QBOOL);
28 qb->value = value;
30 return qb;
33 /**
34 * qbool_get_bool(): Get the stored bool
36 bool qbool_get_bool(const QBool *qb)
38 return qb->value;
41 /**
42 * qbool_is_equal(): Test whether the two QBools are equal
44 bool qbool_is_equal(const QObject *x, const QObject *y)
46 return qobject_to(QBool, x)->value == qobject_to(QBool, y)->value;
49 /**
50 * qbool_destroy_obj(): Free all memory allocated by a
51 * QBool object
53 void qbool_destroy_obj(QObject *obj)
55 assert(obj != NULL);
56 g_free(qobject_to(QBool, obj));