debug: add a timing instrument to the main search routine

master
Benno Schulenberg 2016-08-06 14:39:08 +02:00
parent bd1fcc5fe2
commit ee57cbfa66
1 changed files with 7 additions and 0 deletions

View File

@ -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();
}