mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Performance Timing
- Change the was performance measurements are taken. This in preparation to automated daily perf charts, leading to efforts to speed up certain operations.
This commit is contained in:
parent
ad38d5b92e
commit
ac9d1f3bfa
11 changed files with 182 additions and 53 deletions
|
@ -40,6 +40,7 @@
|
|||
#include <File.h>
|
||||
#include <Directory.h>
|
||||
#include <A3.h>
|
||||
#include <Timer.h>
|
||||
|
||||
class Context
|
||||
{
|
||||
|
@ -112,6 +113,15 @@ public:
|
|||
|
||||
int terminal_width;
|
||||
int terminal_height;
|
||||
|
||||
Timer timer_init;
|
||||
Timer timer_load;
|
||||
Timer timer_synch;
|
||||
Timer timer_gc;
|
||||
Timer timer_filter;
|
||||
Timer timer_commit;
|
||||
Timer timer_sort;
|
||||
Timer timer_render;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue