diff --git a/src/OSD/OSD_ThreadPool.hxx b/src/OSD/OSD_ThreadPool.hxx index 8b6dab6ea3..4b73100a8c 100644 --- a/src/OSD/OSD_ThreadPool.hxx +++ b/src/OSD/OSD_ThreadPool.hxx @@ -112,6 +112,7 @@ protected: { friend class OSD_ThreadPool; public: + //! Main constructor. EnumeratedThread (bool theIsSelfThread = false) : myPool (NULL), myJob (NULL), myWakeEvent (false), myIdleEvent (false), myThreadIndex (0), myUsageCounter(0), @@ -131,6 +132,34 @@ protected: //! Wait the thread going into Idle state (finished jobs). Standard_EXPORT void WaitIdle(); + public: + + //! Copy constructor. + EnumeratedThread (const EnumeratedThread& theCopy) + : OSD_Thread(), + myPool (NULL), myJob (NULL), myWakeEvent (false), + myIdleEvent (false), myThreadIndex (0), myUsageCounter(0), + myIsStarted (false), myToCatchFpe (false), + myIsSelfThread (false) { Assign (theCopy); } + + //! Assignment operator. + EnumeratedThread& operator= (const EnumeratedThread& theCopy) + { + Assign (theCopy); + return *this; + } + + //! Assignment operator. + void Assign (const EnumeratedThread& theCopy) + { + OSD_Thread::Assign (theCopy); + myPool = theCopy.myPool; + myJob = theCopy.myJob; + myThreadIndex = theCopy.myThreadIndex; + myToCatchFpe = theCopy.myToCatchFpe; + myIsSelfThread = theCopy.myIsSelfThread; + } + private: //! Method is executed in the context of thread. @@ -290,6 +319,12 @@ protected: OSD_ThreadPool::JobInterface* theJob, int theThreadIndex); +private: + //! This method should not be called (prohibited). + OSD_ThreadPool (const OSD_ThreadPool& theCopy); + //! This method should not be called (prohibited). + OSD_ThreadPool& operator= (const OSD_ThreadPool& theCopy); + private: NCollection_Array1 myThreads; //!< array of defined threads (excluding self-thread) diff --git a/src/Standard/Standard_Condition.hxx b/src/Standard/Standard_Condition.hxx index c2f33dcdcd..d5c81913b3 100644 --- a/src/Standard/Standard_Condition.hxx +++ b/src/Standard/Standard_Condition.hxx @@ -65,6 +65,12 @@ public: void* getHandle() const { return myEvent; } #endif +private: + //! This method should not be called (prohibited). + Standard_Condition (const Standard_Condition& theCopy); + //! This method should not be called (prohibited). + Standard_Condition& operator= (const Standard_Condition& theCopy); + private: #ifdef _WIN32