From d8e1d92ab93f43eb6746b6c7cec32ba09ad44b7f Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 11 Jan 2001 21:38:31 +0000 Subject: [PATCH] disallow copy constructor and assignment operator --- src/libCom/osi/osiThread.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libCom/osi/osiThread.h b/src/libCom/osi/osiThread.h index 75e2ecd46..48a994c7e 100644 --- a/src/libCom/osi/osiThread.h +++ b/src/libCom/osi/osiThread.h @@ -126,6 +126,9 @@ private: epicsEvent begin; bool cancel; + osiThread ( const osiThread & ); + osiThread & operator = ( const osiThread & ); + friend void osiThreadCallEntryPoint (void *pPvt); };