From 45f6f43fc602e80ed090818751881c9c9dbf659c Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 25 Sep 2023 08:29:12 -0400 Subject: [PATCH] docs: Mark all GWakeup docs as private This is not public API. Helps: #3037 --- glib/gwakeup.c | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/glib/gwakeup.c b/glib/gwakeup.c index 6ce401e52..820804216 100644 --- a/glib/gwakeup.c +++ b/glib/gwakeup.c @@ -38,11 +38,9 @@ #include "gwakeup.h" /*< private > - * SECTION:gwakeup - * @title: GWakeup - * @short_description: portable cross-thread event signal mechanism + * GWakeup: * - * #GWakeup is a simple and portable way of signaling events between + * `GWakeup` is a simple and portable way of signaling events between * different threads in a way that integrates nicely with g_poll(). * GLib uses it internally for cross-thread signalling in the * implementation of #GMainContext and #GCancellable. @@ -59,7 +57,7 @@ * is implemented with a pair of pipes. * * Since: 2.30 - **/ + */ #ifdef _WIN32 #include @@ -124,7 +122,7 @@ struct _GWakeup gint fds[2]; }; -/** +/*< private > * g_wakeup_new: * * Creates a new #GWakeup. @@ -170,7 +168,7 @@ g_wakeup_new (void) return wakeup; } -/** +/*< private > * g_wakeup_get_pollfd: * @wakeup: a #GWakeup * @poll_fd: a #GPollFD @@ -190,7 +188,7 @@ g_wakeup_get_pollfd (GWakeup *wakeup, poll_fd->events = G_IO_IN; } -/** +/*< private > * g_wakeup_acknowledge: * @wakeup: a #GWakeup * @@ -229,7 +227,7 @@ g_wakeup_acknowledge (GWakeup *wakeup) } } -/** +/*< private > * g_wakeup_signal: * @wakeup: a #GWakeup * @@ -270,7 +268,7 @@ g_wakeup_signal (GWakeup *wakeup) } } -/** +/*< private > * g_wakeup_free: * @wakeup: a #GWakeup *