From bdf3c77dcf9b783d51d744387e1a9cbedc92f0fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D0=B5=D0=BB=D0=B8=D0=BF=D0=B5=D0=BD=D0=BA=D0=BE=20?= =?UTF-8?q?=D0=98=D0=B2=D0=B0=D0=BD?= Date: Wed, 14 Sep 2016 08:38:30 +0000 Subject: [PATCH] git-svn-id: svn://db.shs.com.ru/pip@264 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5 --- src/thread/pithread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/thread/pithread.cpp b/src/thread/pithread.cpp index d2774e0d..060fb861 100755 --- a/src/thread/pithread.cpp +++ b/src/thread/pithread.cpp @@ -137,7 +137,7 @@ bool PIThread::start(int timer_delay) { pthread_attr_destroy(&attr); if (ret == 0) { # ifdef MAC_OS - pthread_threadid_np(thread, (__uint64_t*)&tid_) + pthread_threadid_np(thread, (__uint64_t*)&tid_); # else tid_ = thread; # endif @@ -173,7 +173,7 @@ bool PIThread::startOnce() { pthread_attr_destroy(&attr); if (ret == 0) { # ifdef MAC_OS - pthread_threadid_np(thread, (__uint64_t*)&tid_) + pthread_threadid_np(thread, (__uint64_t*)&tid_); # else tid_ = thread; # endif