mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
compiler.h: replace QEMU_SENTINEL with G_GNUC_NULL_TERMINATED
One less qemu-specific macro. It also helps to make some headers/units only depend on glib, and thus moved in standalone projects eventually. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
This commit is contained in:
parent
c08401793a
commit
887ce500ef
4 changed files with 5 additions and 7 deletions
|
@ -616,7 +616,7 @@ Object *object_new_with_props(const char *typename,
|
|||
Object *parent,
|
||||
const char *id,
|
||||
Error **errp,
|
||||
...) QEMU_SENTINEL;
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
|
||||
/**
|
||||
* object_new_with_propv:
|
||||
|
@ -676,7 +676,7 @@ void object_apply_compat_props(Object *obj);
|
|||
*
|
||||
* Returns: %true on success, %false on error.
|
||||
*/
|
||||
bool object_set_props(Object *obj, Error **errp, ...) QEMU_SENTINEL;
|
||||
bool object_set_props(Object *obj, Error **errp, ...) G_GNUC_NULL_TERMINATED;
|
||||
|
||||
/**
|
||||
* object_set_propv:
|
||||
|
@ -728,7 +728,7 @@ void object_initialize(void *obj, size_t size, const char *typename);
|
|||
bool object_initialize_child_with_props(Object *parentobj,
|
||||
const char *propname,
|
||||
void *childobj, size_t size, const char *type,
|
||||
Error **errp, ...) QEMU_SENTINEL;
|
||||
Error **errp, ...) G_GNUC_NULL_TERMINATED;
|
||||
|
||||
/**
|
||||
* object_initialize_child_with_propsv:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue