mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Context: Eliminated gc timer
This commit is contained in:
parent
c7cb2f26ff
commit
89b8c9f198
3 changed files with 5 additions and 5 deletions
|
@ -326,7 +326,7 @@ int Context::run ()
|
|||
|
||||
<< " init:" << time_init_us
|
||||
<< " load:" << static_cast <long> (timer_load.total_us ())
|
||||
<< " gc:" << static_cast <long> (timer_gc.total_us () - tdb2.load_time_us)
|
||||
<< " gc:" << time_gc_us - tdb2.load_time_us
|
||||
<< " filter:" << static_cast <long> (timer_filter.total_us ())
|
||||
<< " commit:" << static_cast <long> (timer_commit.total_us ())
|
||||
<< " sort:" << static_cast <long> (timer_sort.total_us ())
|
||||
|
@ -335,7 +335,7 @@ int Context::run ()
|
|||
<< " other:" << static_cast <long> (timer_total.total_us () -
|
||||
time_init_us -
|
||||
timer_load.total_us () -
|
||||
timer_gc.total_us () -
|
||||
time_gc_us -
|
||||
tdb2.load_time_us -
|
||||
timer_filter.total_us () -
|
||||
timer_commit.total_us () -
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue