Re: Profiling GTK within an application
- From: "Brian J. Tarricone" <bjt23 cornell edu>
- To: gtk-app-devel-list gnome org
- Subject: Re: Profiling GTK within an application
- Date: Mon, 29 Oct 2007 11:04:26 -0700
Chris Rorvick wrote:
My program is spending more than 50% of its userland time
executing code in glib, and a vast majority of that is split evenly
between two functions: g_slist_find() and g_slist_remove_all().
You should probably be using a different data structure. A linked list
is not a good choice if you need to search it for particular items
often. Perhaps consider a GHashTable or GTree.
-brian
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]