File: helper__perf__timer.h

package info (click to toggle)
libgit2 0.27.7%2Bdfsg.1-0.2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 31,400 kB
  • sloc: ansic: 157,824; sh: 406; python: 182; php: 65; makefile: 61
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, ...);