[glib] [notify] drop some unused code
- From: Ryan Lortie <ryanl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] [notify] drop some unused code
- Date: Wed, 16 Nov 2011 17:51:02 +0000 (UTC)
commit 1d98f931946c45301531a576107f5f9d12d63c28
Author: Ryan Lortie <desrt desrt ca>
Date: Wed Nov 16 15:35:58 2011 +0000
[notify] drop some unused code
gobject/gobject.c | 28 ----------------------------
1 files changed, 0 insertions(+), 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,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]