From 1d98f931946c45301531a576107f5f9d12d63c28 Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Wed, 16 Nov 2011 15:35:58 +0000 Subject: [PATCH] [notify] drop some unused code --- gobject/gobject.c | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/gobject/gobject.c b/gobject/gobject.c index f4a29c1..e8850b0 100644 --- a/gobject/gobject.c +++ b/gobject/gobject.c @@ -190,7 +190,6 @@ struct _GObjectNotifyContext { GQuark quark_notify_queue; GObjectNotifyQueueDispatcher dispatcher; - GTrashStack *_nqueue_trash; /* unused */ }; struct _GObjectNotifyQueue { @@ -306,21 +305,6 @@ g_object_notify_queue_thaw (GObject *object, } static inline void -g_object_notify_queue_clear (GObject *object, - GObjectNotifyQueue *nqueue) -{ - g_return_if_fail (nqueue->freeze_count > 0); - - G_LOCK(notify_lock); - - g_slist_free (nqueue->pspecs); - nqueue->pspecs = NULL; - nqueue->n_pspecs = 0; - - G_UNLOCK(notify_lock); -} - -static inline void g_object_notify_queue_add (GObject *object, GObjectNotifyQueue *nqueue, GParamSpec *pspec) @@ -348,18 +332,6 @@ g_object_notify_queue_add (GObject *object, } } -/* NB: This function is not threadsafe, do not ever use it if - * you need a threadsafe notify queue. - * Use g_object_notify_queue_freeze() to acquire the queue and - * g_object_notify_queue_thaw() after you are done instead. - */ -static inline GObjectNotifyQueue* -g_object_notify_queue_from_object (GObject *object, - GObjectNotifyContext *context) -{ - return g_datalist_id_get_data (&object->qdata, context->quark_notify_queue); -} - static void debug_objects_foreach (gpointer key, gpointer value, -- 2.7.4