File: helper__perf__timer.h

package info (click to toggle)
libgit2 1.1.0%2Bdfsg.1-4%2Bdeb11u2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 53,324 kB
  • sloc: ansic: 173,567; sh: 562; python: 351; php: 65; makefile: 50
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, ...);