From b8e309409912ebdd57333231863b389ecd645537 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, 21 Jun 2017 18:25:21 +0000 Subject: [PATCH] git-svn-id: svn://db.shs.com.ru/pip@515 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5 --- src_main/thread/pithread.cpp | 5 ----- src_main/thread/pithread.h | 2 -- 2 files changed, 7 deletions(-) diff --git a/src_main/thread/pithread.cpp b/src_main/thread/pithread.cpp index 3e4ce98e..beacd5d5 100755 --- a/src_main/thread/pithread.cpp +++ b/src_main/thread/pithread.cpp @@ -346,11 +346,6 @@ void PIThread::setPriority(PIThread::Priority prior) { } -void * PIThread::handle() const { - return PRIVATE->thread; -} - - bool PIThread::waitForFinish(int timeout_msecs) { if (!running_) return true; if (timeout_msecs < 0) { diff --git a/src_main/thread/pithread.h b/src_main/thread/pithread.h index ce122480..6fc4370c 100755 --- a/src_main/thread/pithread.h +++ b/src_main/thread/pithread.h @@ -125,8 +125,6 @@ public: //! \brief Returns thread ID llong tid() const {return tid_;} - - void * handle() const; static void __thread_func__(void*); static void __thread_func_once__(void*);