[gnome-control-center/extensible-shell] shell: add a timer to profile panel loading
- From: Thomas Wood <thos src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-control-center/extensible-shell] shell: add a timer to profile panel loading
- Date: Wed, 24 Mar 2010 13:57:07 +0000 (UTC)
commit daebff9dcd81beaaf3a52257d787c7b10e8e5287
Author: Thomas Wood <thomas wood intel com>
Date: Tue Mar 23 10:00:06 2010 +0000
shell: add a timer to profile panel loading
libgnome-control-center-extension/cc-shell.c | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/libgnome-control-center-extension/cc-shell.c b/libgnome-control-center-extension/cc-shell.c
index 713a734..406e066 100644
--- a/libgnome-control-center-extension/cc-shell.c
+++ b/libgnome-control-center-extension/cc-shell.c
@@ -134,6 +134,7 @@ load_panel_plugins (CcShell *shell)
GList *modules;
GList *panel_implementations;
GList *l;
+ GTimer *timer;
/* make sure base type is registered */
if (panel_type == G_TYPE_INVALID)
@@ -162,6 +163,7 @@ load_panel_plugins (CcShell *shell)
#endif
/* find all extensions */
+ timer = g_timer_new ();
panel_implementations = g_io_extension_point_get_extensions (ep);
for (l = panel_implementations; l != NULL; l = l->next)
{
@@ -171,15 +173,19 @@ load_panel_plugins (CcShell *shell)
extension = l->data;
- g_debug ("Found extension: %s %d", g_io_extension_get_name (extension), g_io_extension_get_priority (extension));
+ g_debug ("Found extension: %s %d", g_io_extension_get_name (extension),
+ g_io_extension_get_priority (extension));
panel = g_object_new (g_io_extension_get_type (extension),
"shell", shell,
NULL);
g_object_get (panel, "id", &id, NULL);
g_hash_table_insert (priv->panels, g_strdup (id), g_object_ref (panel));
- g_debug ("id: '%s'", id);
+ g_debug ("id: '%s', loaded in %fsec", id, g_timer_elapsed (timer, NULL));
g_free (id);
+ g_timer_start (timer);
}
+ g_timer_destroy (timer);
+ timer = NULL;
/* unload all modules; the module our instantiated authority is in won't be unloaded because
* we've instantiated a reference to a type in this module
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]