Merge pull request #711
52056dc
WIN32 thread_id is OS-dependent not compiler-dependent (Howard Chu)87d39f3
WIN32: Need getpid() declaration (Howard Chu)
This commit is contained in:
commit
c276483dbb
|
@ -52,6 +52,12 @@ namespace misc_utils
|
||||||
{
|
{
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
return ::GetTickCount64();
|
return ::GetTickCount64();
|
||||||
|
#elif defined(WIN32)
|
||||||
|
# if defined(WIN64)
|
||||||
|
return GetTickCount64();
|
||||||
|
# else
|
||||||
|
return GetTickCount();
|
||||||
|
# endif
|
||||||
#elif defined(__MACH__)
|
#elif defined(__MACH__)
|
||||||
clock_serv_t cclock;
|
clock_serv_t cclock;
|
||||||
mach_timespec_t mts;
|
mach_timespec_t mts;
|
||||||
|
@ -98,7 +104,7 @@ namespace misc_utils
|
||||||
|
|
||||||
inline std::string get_thread_string_id()
|
inline std::string get_thread_string_id()
|
||||||
{
|
{
|
||||||
#if defined(_MSC_VER)
|
#if defined(_WIN32)
|
||||||
return boost::lexical_cast<std::string>(GetCurrentThreadId());
|
return boost::lexical_cast<std::string>(GetCurrentThreadId());
|
||||||
#elif defined(__GNUC__)
|
#elif defined(__GNUC__)
|
||||||
return boost::lexical_cast<std::string>(pthread_self());
|
return boost::lexical_cast<std::string>(pthread_self());
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
|
|
||||||
#if defined(OS_TYPE_WINDOWS)
|
#if defined(OS_TYPE_WINDOWS)
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
#include <process.h>
|
||||||
#elif defined(OS_TYPE_POSIX)
|
#elif defined(OS_TYPE_POSIX)
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
Loading…
Reference in New Issue