Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
S
spdlog
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
spdlog
Commits
583ca02e
Commit
583ca02e
authored
Dec 21, 2015
by
Sergey Kovalevich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added CLOCK_MONOTONIC trick
parent
01f3d6f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
os.h
include/spdlog/details/os.h
+23
-1
No files found.
include/spdlog/details/os.h
View file @
583ca02e
...
...
@@ -35,6 +35,20 @@ namespace details
namespace
os
{
#if defined __linux__ && defined SPDLOG_CLOCK_MONOTONIC
inline
uint64_t
clock_offset
()
{
timespec
ts_realtime
;
::
clock_gettime
(
CLOCK_REALTIME
,
&
ts_realtime
);
timespec
ts_monotonic
;
::
clock_gettime
(
CLOCK_MONOTONIC
,
&
ts_monotonic
);
const
uint64_t
realtime
=
ts_realtime
.
tv_sec
*
1000000000
+
ts_realtime
.
tv_nsec
;
const
uint64_t
monotonic
=
ts_monotonic
.
tv_sec
*
1000000000
+
ts_monotonic
.
tv_nsec
;
return
realtime
-
monotonic
;
}
#endif
inline
spdlog
::
log_clock
::
time_point
now
()
{
...
...
@@ -45,6 +59,14 @@ inline spdlog::log_clock::time_point now()
std
::
chrono
::
duration_cast
<
typename
log_clock
::
duration
>
(
std
::
chrono
::
seconds
(
ts
.
tv_sec
)
+
std
::
chrono
::
nanoseconds
(
ts
.
tv_nsec
)));
#elif defined __linux__ && defined SPDLOG_CLOCK_MONOTONIC
static
const
auto
offset
=
std
::
chrono
::
nanoseconds
(
clock_offset
());
timespec
ts
;
::
clock_gettime
(
CLOCK_MONOTONIC
,
&
ts
);
return
std
::
chrono
::
time_point
<
log_clock
,
typename
log_clock
::
duration
>
(
std
::
chrono
::
duration_cast
<
typename
log_clock
::
duration
>
(
offset
+
std
::
chrono
::
seconds
(
ts
.
tv_sec
)
+
std
::
chrono
::
nanoseconds
(
ts
.
tv_nsec
)));
#else
return
log_clock
::
now
();
#endif
...
...
@@ -151,7 +173,7 @@ inline bool file_exists(const std::string& filename)
#elif __linux__
struct
stat
buffer
;
return
(
stat
(
filename
.
c_str
(),
&
buffer
)
==
0
);
#else
#else
auto
*
file
=
fopen
(
filename
.
c_str
(),
"r"
);
if
(
file
!=
nullptr
)
{
...
...
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