[glib/gobject-speedups: 23/25] Avoid g_object_ref/unref in some cases
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib/gobject-speedups: 23/25] Avoid g_object_ref/unref in some cases
- Date: Wed, 25 May 2022 15:02:07 +0000 (UTC)
commit f2a99e1e790af7c798b2431edf0b1cebc0e93bf2
Author: Matthias Clasen <mclasen redhat com>
Date: Tue May 17 07:11:19 2022 -0400
Avoid g_object_ref/unref in some cases
We only need to take a ref on the object when
we call out to external code (ie around
->dispatch_properties_changed). If we avoid
the signal emission, we can avoid the ref/unref
too.
gobject/gobject.c | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
---
diff --git a/gobject/gobject.c b/gobject/gobject.c
index 878148fe5a..04cd773e11 100644
--- a/gobject/gobject.c
+++ b/gobject/gobject.c
@@ -1358,9 +1358,15 @@ g_object_notify_by_spec_internal (GObject *object,
g_object_notify_queue_thaw (object, nqueue);
}
else
- /* not frozen, so just dispatch the notification directly */
- G_OBJECT_GET_CLASS (object)
- ->dispatch_properties_changed (object, 1, &pspec);
+ {
+ g_object_ref (object);
+
+ /* not frozen, so just dispatch the notification directly */
+ G_OBJECT_GET_CLASS (object)
+ ->dispatch_properties_changed (object, 1, &pspec);
+
+ g_object_unref (object);
+ }
}
}
@@ -1391,7 +1397,6 @@ g_object_notify (GObject *object,
if (g_atomic_int_get (&object->ref_count) == 0)
return;
- g_object_ref (object);
/* We don't need to get the redirect target
* (by, e.g. calling g_object_class_find_property())
* because g_object_notify_queue_add() does that
@@ -1408,7 +1413,6 @@ g_object_notify (GObject *object,
property_name);
else
g_object_notify_by_spec_internal (object, pspec);
- g_object_unref (object);
}
/**
@@ -1467,9 +1471,7 @@ g_object_notify_by_pspec (GObject *object,
if (g_atomic_int_get (&object->ref_count) == 0)
return;
- g_object_ref (object);
g_object_notify_by_spec_internal (object, pspec);
- g_object_unref (object);
}
/**
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]