MCPcopy Create free account
hub / github.com/git/git / trace2_timer_start

Function trace2_timer_start

trace2.c:1008–1017  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1006}
1007
1008void trace2_timer_start(enum trace2_timer_id tid)
1009{
1010 if (!trace2_enabled)
1011 return;
1012
1013 if (tid < 0 || tid >= TRACE2_NUMBER_OF_TIMERS)
1014 BUG("trace2_timer_start: invalid timer id: %d", tid);
1015
1016 tr2_start_timer(tid);
1017}
1018
1019void trace2_timer_stop(enum trace2_timer_id tid)
1020{

Callers 2

ut_100timerFunction · 0.85
ut_101timer_thread_procFunction · 0.85

Calls 1

tr2_start_timerFunction · 0.85

Tested by 2

ut_100timerFunction · 0.68
ut_101timer_thread_procFunction · 0.68