summaryrefslogtreecommitdiffstats
path: root/device_tree.c
diff options
context:
space:
mode:
authorDaniel P. Berrange <berrange@redhat.com>2015-12-09 12:34:02 +0000
committerTimothy Pearson <tpearson@raptorengineering.com>2019-11-29 19:28:25 -0600
commit843a9528139f84ac0cb68aa8b5baac0a4bdcf419 (patch)
tree9c97ced2fb48f7fc87be754fdf10d79555ee36c3 /device_tree.c
parent11942fb061ca0899be8ab046e4181326d3ce760b (diff)
downloadhqemu-843a9528139f84ac0cb68aa8b5baac0a4bdcf419.zip
hqemu-843a9528139f84ac0cb68aa8b5baac0a4bdcf419.tar.gz
qom: Change object property iterator API contract
Currently the ObjectProperty iterator API works as follows: ObjectPropertyIterator *iter; iter = object_property_iter_init(obj); while ((prop = object_property_iter_next(iter))) { ... } object_property_iter_free(iter); This has the benefit that the ObjectPropertyIterator struct can be opaque, but has the downside that callers need to explicitly call a free function. It is also not in keeping with iterator style used elsewhere in QEMU/GLib2. This patch changes the API to use stack allocation instead: ObjectPropertyIterator iter; object_property_iter_init(&iter, obj); while ((prop = object_property_iter_next(&iter))) { ... } Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> [AF: Fused ObjectPropertyIterator struct with typedef] Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'device_tree.c')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud