File: helper__perf__timer.h

package info (click to toggle)
libgit2 0.25.1%2Breally0.24.6-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 28,512 kB
  • ctags: 15,888
  • sloc: ansic: 153,520; sh: 297; python: 175; makefile: 70; php: 65
file content (27 lines) | stat: -rw-r--r-- 417 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#if defined(GIT_WIN32)

struct perf__timer
{
	LARGE_INTEGER sum;
	LARGE_INTEGER time_started;
};

#define PERF_TIMER_INIT {0}

#else

struct perf__timer
{
	uint32_t sum;
	uint32_t time_started;
};

#define PERF_TIMER_INIT {0}

#endif

typedef struct perf__timer perf_timer;

void perf__timer__start(perf_timer *t);
void perf__timer__stop(perf_timer *t);
void perf__timer__report(perf_timer *t, const char *fmt, ...);