diff options
Diffstat (limited to 'indra/llcommon/llworkerthread.h')
-rw-r--r-- | indra/llcommon/llworkerthread.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llcommon/llworkerthread.h b/indra/llcommon/llworkerthread.h index be06bc2a58..793155308b 100644 --- a/indra/llcommon/llworkerthread.h +++ b/indra/llcommon/llworkerthread.h @@ -118,6 +118,9 @@ class LLWorkerClass { friend class LLWorkerThread; friend class LLWorkerThread::WorkRequest; + +public: + static BOOL sDeleteLock ; public: typedef LLWorkerThread::handle_t handle_t; enum FLAGS @@ -178,6 +181,7 @@ private: void setFlags(U32 flags) { mWorkFlags = mWorkFlags | flags; } void clearFlags(U32 flags) { mWorkFlags = mWorkFlags & ~flags; } U32 getFlags() { return mWorkFlags; } +public: bool getFlags(U32 flags) { return mWorkFlags & flags ? true : false; } private: |