From ee57cbfa6634eb405ec365734055744c32cf06eb Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sat, 6 Aug 2016 14:39:08 +0200 Subject: [PATCH] debug: add a timing instrument to the main search routine --- src/search.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/search.c b/src/search.c index 0b6f2e81..6a61b468 100644 --- a/src/search.c +++ b/src/search.c @@ -494,6 +494,9 @@ void go_looking(void) filestruct *was_current = openfile->current; size_t was_current_x = openfile->current_x; int didfind; +#ifdef DEBUG + clock_t start = clock(); +#endif came_full_circle = FALSE; @@ -509,6 +512,10 @@ void go_looking(void) openfile->current_x == was_current_x) statusbar(_("This is the only occurrence")); +#ifdef DEBUG + statusline(HUSH, "Took: %.2f", (double)(clock() - start) / CLOCKS_PER_SEC); +#endif + edit_redraw(was_current); search_replace_abort(); }