Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
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
captainwong
jlib
Commits
d765bdaa
Commit
d765bdaa
authored
May 13, 2016
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed log's system_clock to steady_clock
parent
ffe94f6a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
global.h
global.h
+6
-6
No files found.
global.h
View file @
d765bdaa
...
@@ -21,13 +21,13 @@ namespace jlib {
...
@@ -21,13 +21,13 @@ namespace jlib {
class
LogFunction
{
class
LogFunction
{
private
:
private
:
const
char
*
_func_name
;
const
char
*
_func_name
;
std
::
chrono
::
s
ystem
_clock
::
time_point
_begin
;
std
::
chrono
::
s
teady
_clock
::
time_point
_begin
;
public
:
public
:
LogFunction
(
const
char
*
func_name
)
:
_func_name
(
func_name
)
{
LogFunction
(
const
char
*
func_name
)
:
_func_name
(
func_name
)
{
JLOGA
(
"%s in
\n
"
,
_func_name
);
_begin
=
std
::
chrono
::
s
ystem
_clock
::
now
();
JLOGA
(
"%s in
\n
"
,
_func_name
);
_begin
=
std
::
chrono
::
s
teady
_clock
::
now
();
}
}
~
LogFunction
()
{
~
LogFunction
()
{
auto
diff
=
std
::
chrono
::
s
ystem
_clock
::
now
()
-
_begin
;
auto
diff
=
std
::
chrono
::
s
teady
_clock
::
now
()
-
_begin
;
auto
msec
=
std
::
chrono
::
duration_cast
<
std
::
chrono
::
milliseconds
>
(
diff
);
auto
msec
=
std
::
chrono
::
duration_cast
<
std
::
chrono
::
milliseconds
>
(
diff
);
JLOGA
(
"%s out, duration: %d(ms)
\n
"
,
_func_name
,
msec
.
count
());
JLOGA
(
"%s out, duration: %d(ms)
\n
"
,
_func_name
,
msec
.
count
());
}
}
...
@@ -40,11 +40,11 @@ class range_log
...
@@ -40,11 +40,11 @@ class range_log
{
{
private
:
private
:
std
::
wstring
_msg
;
std
::
wstring
_msg
;
std
::
chrono
::
s
ystem
_clock
::
time_point
_begin
;
std
::
chrono
::
s
teady
_clock
::
time_point
_begin
;
public
:
public
:
range_log
(
const
std
::
wstring
&
msg
)
:
_msg
(
msg
)
{
JLOG
((
_msg
+
L" in"
).
c_str
());
_begin
=
std
::
chrono
::
s
ystem
_clock
::
now
();
}
range_log
(
const
std
::
wstring
&
msg
)
:
_msg
(
msg
)
{
JLOG
((
_msg
+
L" in"
).
c_str
());
_begin
=
std
::
chrono
::
s
teady
_clock
::
now
();
}
~
range_log
()
{
~
range_log
()
{
auto
diff
=
std
::
chrono
::
s
ystem
_clock
::
now
()
-
_begin
;
auto
diff
=
std
::
chrono
::
s
teady
_clock
::
now
()
-
_begin
;
auto
msec
=
std
::
chrono
::
duration_cast
<
std
::
chrono
::
milliseconds
>
(
diff
);
auto
msec
=
std
::
chrono
::
duration_cast
<
std
::
chrono
::
milliseconds
>
(
diff
);
JLOG
(
L"%s out, duration: %d(ms)
\n
"
,
_msg
.
c_str
(),
msec
.
count
());
JLOG
(
L"%s out, duration: %d(ms)
\n
"
,
_msg
.
c_str
(),
msec
.
count
());
}
}
...
...
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