aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-03-29 03:53:39 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-03-29 04:12:42 +0800
commitea8326df3a64c21ddbcacad5941648b1a86bc7e2 (patch)
treed149c78ebf615f743c16b043dc95ef09c2e95eb0 /mail/message-list.c
parente2f889a00543b42694095daf71ebe78d3ff230b5 (diff)
downloadgsoc2013-evolution-ea8326df3a64c21ddbcacad5941648b1a86bc7e2.tar
gsoc2013-evolution-ea8326df3a64c21ddbcacad5941648b1a86bc7e2.tar.gz
gsoc2013-evolution-ea8326df3a64c21ddbcacad5941648b1a86bc7e2.tar.bz2
gsoc2013-evolution-ea8326df3a64c21ddbcacad5941648b1a86bc7e2.tar.lz
gsoc2013-evolution-ea8326df3a64c21ddbcacad5941648b1a86bc7e2.tar.xz
gsoc2013-evolution-ea8326df3a64c21ddbcacad5941648b1a86bc7e2.tar.zst
gsoc2013-evolution-ea8326df3a64c21ddbcacad5941648b1a86bc7e2.zip
Remove the profiler plugin.
This plugin was for developers, but no one uses it anymore. Plus the only profiling hooks left in Evolution were in the MessageList widget, which performs fine. There's better ways to collect profiling data these days anyway (sysprof, systemtap, etc.).
Diffstat (limited to 'mail/message-list.c')
-rw-r--r--mail/message-list.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index 6306b7238e..72c962e937 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -39,7 +39,6 @@
#include "e-util/e-account-utils.h"
#include "e-util/e-icon-factory.h"
#include "e-util/e-poolv.h"
-#include "e-util/e-profile-event.h"
#include "e-util/e-util-private.h"
#include "e-util/e-util.h"
@@ -4527,8 +4526,6 @@ regen_list_exec (struct _regen_list_msg *m,
if (cursor)
m->last_row = e_tree_table_adapter_row_of_node (e_tree_get_table_adapter (tree), cursor);
- e_profile_event_emit("list.getuids", camel_folder_get_full_name (m->folder), 0);
-
/* if we have hidedeleted on, use a search to find it out, merge with existing search if set */
if (!camel_folder_has_search_capability (m->folder)) {
/* if we have no search capability, dont let search or hide deleted work */
@@ -4608,8 +4605,6 @@ regen_list_exec (struct _regen_list_msg *m,
return;
}
- e_profile_event_emit("list.threaduids", camel_folder_get_full_name (m->folder), 0);
-
/* camel_folder_summary_prepare_fetch_all (m->folder->summary, NULL); */
if (!g_cancellable_is_cancelled (cancellable)) {
/* update/build a new tree */
@@ -4669,8 +4664,6 @@ regen_list_done (struct _regen_list_msg *m)
g_signal_handlers_block_by_func (e_tree_get_table_adapter (tree), ml_tree_sorting_changed, m->ml);
- e_profile_event_emit("list.buildtree", camel_folder_get_full_name (m->folder), 0);
-
if (m->dotree) {
gboolean forcing_expand_state = m->ml->expand_all || m->ml->collapse_all;
@@ -4776,8 +4769,6 @@ regen_list_free (struct _regen_list_msg *m)
{
gint i;
- e_profile_event_emit("list.regenerated", camel_folder_get_full_name (m->folder), 0);
-
if (m->summary) {
for (i = 0; i < m->summary->len; i++)
camel_folder_free_message_info (m->folder, m->summary->pdata[i]);
@@ -4817,8 +4808,6 @@ static MailMsgInfo regen_list_info = {
static gboolean
ml_regen_timeout (struct _regen_list_msg *m)
{
- e_profile_event_emit("list.regenerate", camel_folder_get_full_name (m->folder), 0);
-
g_mutex_lock (m->ml->regen_lock);
m->ml->regen = g_list_prepend (m->ml->regen, m);
g_mutex_unlock (m->ml->regen_lock);