Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
e5cf1c70
Commit
e5cf1c70
authored
Mar 03, 2015
by
Jeff Hostetler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Converted cl_perf_timer to use git__timer internally.
parent
9a859ef5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
76 deletions
+11
-76
tests/clar_libgit2_timer.c
+6
-58
tests/clar_libgit2_timer.h
+5
-18
No files found.
tests/clar_libgit2_timer.c
View file @
e5cf1c70
...
@@ -7,77 +7,25 @@ void cl_perf_timer__init(cl_perf_timer *t)
...
@@ -7,77 +7,25 @@ void cl_perf_timer__init(cl_perf_timer *t)
memset
(
t
,
0
,
sizeof
(
cl_perf_timer
));
memset
(
t
,
0
,
sizeof
(
cl_perf_timer
));
}
}
#if defined(GIT_WIN32)
void
cl_perf_timer__start
(
cl_perf_timer
*
t
)
void
cl_perf_timer__start
(
cl_perf_timer
*
t
)
{
{
QueryPerformanceCounter
(
&
t
->
time_started
);
t
->
time_started
=
git__timer
(
);
}
}
void
cl_perf_timer__stop
(
cl_perf_timer
*
t
)
void
cl_perf_timer__stop
(
cl_perf_timer
*
t
)
{
{
LARGE_INTEGER
time_now
;
double
time_now
=
git__timer
();
QueryPerformanceCounter
(
&
time_now
);
t
->
last
.
QuadPart
=
(
time_now
.
QuadPart
-
t
->
time_started
.
QuadPart
)
;
t
->
last
=
time_now
-
t
->
time_started
;
t
->
sum
.
QuadPart
+=
(
time_now
.
QuadPart
-
t
->
time_started
.
QuadPart
)
;
t
->
sum
+=
t
->
last
;
}
}
double
cl_perf_timer__last
(
const
cl_perf_timer
*
t
)
double
cl_perf_timer__last
(
const
cl_perf_timer
*
t
)
{
{
LARGE_INTEGER
freq
;
return
t
->
last
;
double
fraction
;
QueryPerformanceFrequency
(
&
freq
);
fraction
=
((
double
)
t
->
last
.
QuadPart
)
/
((
double
)
freq
.
QuadPart
);
return
fraction
;
}
}
double
cl_perf_timer__sum
(
const
cl_perf_timer
*
t
)
double
cl_perf_timer__sum
(
const
cl_perf_timer
*
t
)
{
{
LARGE_INTEGER
freq
;
return
t
->
sum
;
double
fraction
;
QueryPerformanceFrequency
(
&
freq
);
fraction
=
((
double
)
t
->
sum
.
QuadPart
)
/
((
double
)
freq
.
QuadPart
);
return
fraction
;
}
#else
#include <sys/time.h>
static
uint32_t
now_in_ms
(
void
)
{
struct
timeval
now
;
gettimeofday
(
&
now
,
NULL
);
return
(
uint32_t
)((
now
.
tv_sec
*
1000
)
+
(
now
.
tv_usec
/
1000
));
}
void
cl_perf_timer__start
(
cl_perf_timer
*
t
)
{
t
->
time_started
=
now_in_ms
();
}
}
void
cl_perf_timer__stop
(
cl_perf_timer
*
t
)
{
uint32_t
now
=
now_in_ms
();
t
->
last
=
(
now
-
t
->
time_started
);
t
->
sum
+=
(
now
-
t
->
time_started
);
}
double
cl_perf_timer__last
(
const
cl_perf_timer
*
t
)
{
double
fraction
=
((
double
)
t
->
last
)
/
1000
;
return
fraction
;
}
double
cl_perf_timer__sum
(
const
cl_perf_timer
*
t
)
{
double
fraction
=
((
double
)
t
->
sum
)
/
1000
;
return
fraction
;
}
#endif
tests/clar_libgit2_timer.h
View file @
e5cf1c70
#ifndef __CLAR_LIBGIT2_TIMER__
#ifndef __CLAR_LIBGIT2_TIMER__
#define __CLAR_LIBGIT2_TIMER__
#define __CLAR_LIBGIT2_TIMER__
#if defined(GIT_WIN32)
struct
cl_perf_timer
struct
cl_perf_timer
{
{
/* cummulative running time across all start..stop intervals */
/* cummulative running time across all start..stop intervals */
LARGE_INTEGER
sum
;
double
sum
;
/* value of last start..stop interval */
LARGE_INTEGER
last
;
/* clock value at start */
LARGE_INTEGER
time_started
;
};
#define CL_PERF_TIMER_INIT {0}
#else
/* value of last start..stop interval */
double
last
;
struct
cl_perf_timer
/* clock value at start */
{
double
time_started
;
uint32_t
sum
;
uint32_t
last
;
uint32_t
time_started
;
};
};
#define CL_PERF_TIMER_INIT {0}
#define CL_PERF_TIMER_INIT {0}
#endif
typedef
struct
cl_perf_timer
cl_perf_timer
;
typedef
struct
cl_perf_timer
cl_perf_timer
;
void
cl_perf_timer__init
(
cl_perf_timer
*
t
);
void
cl_perf_timer__init
(
cl_perf_timer
*
t
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment