diff options
author | Richard Linden <none@none> | 2012-09-24 19:01:48 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-09-24 19:01:48 -0700 |
commit | 308ff886c3ab2aa561477921bc0d92e1bd7d399a (patch) | |
tree | 5db9d358cc1a8c8a1061537efd69019c6bb4f2d2 /indra/llcommon/llthread.h | |
parent | adeeabfc13c91dc99a1ea1949cd2f820c4150995 (diff) |
fixed build
moved LLThread::lockData and unlockData back to header
Diffstat (limited to 'indra/llcommon/llthread.h')
-rw-r--r-- | indra/llcommon/llthread.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/indra/llcommon/llthread.h b/indra/llcommon/llthread.h index e50fa7653d..fed111b0e4 100644 --- a/indra/llcommon/llthread.h +++ b/indra/llcommon/llthread.h @@ -136,6 +136,18 @@ protected: // mRunCondition->unlock(); }; + +void LLThread::lockData() +{ + mRunCondition->lock(); +} + +void LLThread::unlockData() +{ + mRunCondition->unlock(); +} + + //============================================================================ #endif // LL_LLTHREAD_H |