summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2020-08-19 22:44:55 +0200
committerDave Davenport <qball@gmpclient.org>2020-08-19 22:44:55 +0200
commit4f1169e3262eff5687d638aea9128ae7a660cd59 (patch)
tree40658cadb909dae67b0c80cc587a9a2dc744178c
parent802a9489e7fbf809890ab6bf39e62664fa4c134f (diff)
Add extra timing debug.
Issue: #1162
-rw-r--r--source/rofi.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/rofi.c b/source/rofi.c
index 0b47a9c7..68001696 100644
--- a/source/rofi.c
+++ b/source/rofi.c
@@ -1110,15 +1110,19 @@ int main ( int argc, char *argv[] )
}
rofi_view_workers_initialize ();
+ TICK_N ( "Workers initialize" );
rofi_icon_fetcher_init ( );
+ TICK_N ( "Icon fetcher initialize" );
// Create pid file
int pfd = create_pid_file ( pidfile );
+ TICK_N ( "Pid file created" );
if ( pfd < 0 ) {
cleanup ();
return EXIT_FAILURE;
}
textbox_setup ();
+ TICK_N ( "Text box setup" );
if ( !display_late_setup () ) {
g_warning ( "Failed to properly finish display setup" );