aboutsummaryrefslogtreecommitdiffstats
path: root/CommonLibs/Threads.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CommonLibs/Threads.cpp')
-rw-r--r--CommonLibs/Threads.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/CommonLibs/Threads.cpp b/CommonLibs/Threads.cpp
index 020d94e..d8dab57 100644
--- a/CommonLibs/Threads.cpp
+++ b/CommonLibs/Threads.cpp
@@ -32,12 +32,6 @@
#include "Timeval.h"
#include "Logger.h"
-#ifndef gettid
-#include <sys/syscall.h>
-#define gettid() syscall(SYS_gettid)
-#endif
-
-
using namespace std;
#ifndef HAVE_ATOMIC_OPS
@@ -114,7 +108,7 @@ void Signal::wait(Mutex& wMutex, unsigned timeout) const
void set_selfthread_name(const char *name)
{
pthread_t selfid = pthread_self();
- pid_t tid = gettid();
+ pid_t tid = my_gettid();
if (pthread_setname_np(selfid, name) == 0) {
LOG(INFO) << "Thread "<< selfid << " (task " << tid << ") set name: " << name;
} else {