mirror of
https://github.com/gabime/spdlog.git
synced 2024-12-25 18:11:33 +08:00
better support for thread id in FreeBSD
This commit is contained in:
parent
2705e35a8c
commit
e556daebc3
@ -38,8 +38,10 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
|
|
||||||
#else
|
#elif __FreeBSD__
|
||||||
|
#include <sys/thr.h> //Use thr_self() syscall under FreeBSD to get thread id
|
||||||
|
|
||||||
|
#else
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
@ -263,10 +265,15 @@ inline size_t thread_id()
|
|||||||
# define SYS_gettid __NR_gettid
|
# define SYS_gettid __NR_gettid
|
||||||
# endif
|
# endif
|
||||||
return static_cast<size_t>(syscall(SYS_gettid));
|
return static_cast<size_t>(syscall(SYS_gettid));
|
||||||
|
#elif __FreeBSD__
|
||||||
|
long tid;
|
||||||
|
thr_self(&tid);
|
||||||
|
return static_cast<size_t>(tid);
|
||||||
#else //Default to standard C++11 (OSX and other Unix)
|
#else //Default to standard C++11 (OSX and other Unix)
|
||||||
return static_cast<size_t>(std::hash<std::thread::id>()(std::this_thread::get_id()));
|
return static_cast<size_t>(std::hash<std::thread::id>()(std::this_thread::get_id()));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user