diff options
author | brad kittenbrink <brad@lindenlab.com> | 2009-10-07 17:51:28 -0700 |
---|---|---|
committer | brad kittenbrink <brad@lindenlab.com> | 2009-10-07 17:51:28 -0700 |
commit | 50247533f99f374be71728cc5ca00f0444189a9f (patch) | |
tree | c1505ec3ec9c054447fb98968c9299e502857000 /indra/llcommon/llqueuedthread.h | |
parent | 146e084af3344ada737340115c5fa063c0aab6b3 (diff) | |
parent | d885db79f94ee3d6a2b4ed7febe7beb69d0c7d51 (diff) |
Merged latest viewer/login-api with latest viewer/viewer-20
Diffstat (limited to 'indra/llcommon/llqueuedthread.h')
-rw-r--r-- | indra/llcommon/llqueuedthread.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/llcommon/llqueuedthread.h b/indra/llcommon/llqueuedthread.h index 3ba43e1e07..8bfa5632a1 100644 --- a/indra/llcommon/llqueuedthread.h +++ b/indra/llcommon/llqueuedthread.h @@ -47,7 +47,7 @@ // Note: ~LLQueuedThread is O(N) N=# of queued threads, assumed to be small // It is assumed that LLQueuedThreads are rarely created/destroyed. -class LLQueuedThread : public LLThread +class LL_COMMON_API LLQueuedThread : public LLThread { //------------------------------------------------------------------------ public: @@ -80,7 +80,7 @@ public: //------------------------------------------------------------------------ public: - class QueuedRequest : public LLSimpleHashEntry<handle_t> + class LL_COMMON_API QueuedRequest : public LLSimpleHashEntry<handle_t> { friend class LLQueuedThread; @@ -148,6 +148,7 @@ protected: } }; + //------------------------------------------------------------------------ public: |