From a1bce0ead5a7d46f719e1f890fd7e4d0fa5d7d55 Mon Sep 17 00:00:00 2001 From: Yong Bakos Date: Thu, 12 May 2016 15:52:39 -0500 Subject: [PATCH] doc: Unpublish global_zombie_object and wl_interface_equal Both global_zombie_object and wl_interface_equal are private, yet were part of public documentation despite not being part of the public API. Move these two definitions to the top of an existing doxygen \cond block, which removes them from the public documentation. Signed-off-by: Yong Bakos Reviewed-by: Bryce Harrington --- src/wayland-util.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/wayland-util.c b/src/wayland-util.c index 407d1f0..7467366 100644 --- a/src/wayland-util.c +++ b/src/wayland-util.c @@ -33,21 +33,6 @@ #include "wayland-util.h" #include "wayland-private.h" -struct wl_object global_zombie_object; - -int -wl_interface_equal(const struct wl_interface *a, const struct wl_interface *b) -{ - /* In most cases the pointer equality test is sufficient. - * However, in some cases, depending on how things are split - * across shared objects, we can end up with multiple - * instances of the interface metadata constants. So if the - * pointers match, the interfaces are equal, if they don't - * match we have to compare the interface names. - */ - return a == b || strcmp(a->name, b->name) == 0; -} - WL_EXPORT void wl_list_init(struct wl_list *list) { @@ -167,6 +152,21 @@ wl_array_copy(struct wl_array *array, struct wl_array *source) /** \cond */ +struct wl_object global_zombie_object; + +int +wl_interface_equal(const struct wl_interface *a, const struct wl_interface *b) +{ + /* In most cases the pointer equality test is sufficient. + * However, in some cases, depending on how things are split + * across shared objects, we can end up with multiple + * instances of the interface metadata constants. So if the + * pointers match, the interfaces are equal, if they don't + * match we have to compare the interface names. + */ + return a == b || strcmp(a->name, b->name) == 0; +} + union map_entry { uintptr_t next; void *data; -- 2.7.4