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
4e768c14
Commit
4e768c14
authored
Nov 11, 2016
by
Gabi Melman
Committed by
GitHub
Nov 11, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #314 from osx2000/master
Compatibility with Oracle Developer Studio 12.5 on Solaris
parents
9ccb6af2
3cd497ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
async_log_helper.h
include/spdlog/details/async_log_helper.h
+1
-1
os.h
include/spdlog/details/os.h
+1
-1
No files found.
include/spdlog/details/async_log_helper.h
View file @
4e768c14
...
...
@@ -359,7 +359,7 @@ inline void spdlog::details::async_log_helper::sleep_or_yield(const spdlog::log_
// yield upto 150 micros
if
(
time_since_op
<=
microseconds
(
100
))
return
yield
();
return
std
::
this_thread
::
yield
();
// sleep for 20 ms upto 200 ms
...
...
include/spdlog/details/os.h
View file @
4e768c14
...
...
@@ -343,7 +343,7 @@ inline std::string errno_str(int err_num)
else
return
"Unkown error"
;
#elif defined(__FreeBSD__) || defined(__APPLE__) || defined(ANDROID) || \
#elif defined(__FreeBSD__) || defined(__APPLE__) || defined(ANDROID) ||
defined(__SUNPRO_CC) ||
\
((_POSIX_C_SOURCE >= 200112L) && ! _GNU_SOURCE) // posix version
if
(
strerror_r
(
err_num
,
buf
,
buf_size
)
==
0
)
...
...
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