aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/aiaprpool.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llcommon/aiaprpool.h')
-rw-r--r--linden/indra/llcommon/aiaprpool.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/linden/indra/llcommon/aiaprpool.h b/linden/indra/llcommon/aiaprpool.h
index f6d7ffa..72e9ddb 100644
--- a/linden/indra/llcommon/aiaprpool.h
+++ b/linden/indra/llcommon/aiaprpool.h
@@ -157,17 +157,19 @@ public:
157/** 157/**
158 * @brief Root memory pool (allocates memory from the operating system). 158 * @brief Root memory pool (allocates memory from the operating system).
159 * 159 *
160 * This class should only be used by AIThreadLocalData (and LLMutexRootPool 160 * This class should only be used by AIThreadLocalData and AIThreadSafeSimpleDCRootPool_pbase
161 * when APR_HAS_THREADS isn't defined). 161 * (and LLMutexRootPool when APR_HAS_THREADS isn't defined).
162 */ 162 */
163class LL_COMMON_API AIAPRRootPool : public AIAPRInitialization, public AIAPRPool 163class LL_COMMON_API AIAPRRootPool : public AIAPRInitialization, public AIAPRPool
164{ 164{
165private: 165private:
166 friend class AIThreadLocalData; 166 friend class AIThreadLocalData;
167 friend class AIThreadSafeSimpleDCRootPool_pbase;
167#if !APR_HAS_THREADS 168#if !APR_HAS_THREADS
168 friend class LLMutexRootPool; 169 friend class LLMutexRootPool;
169#endif 170#endif
170 //! Construct a root memory pool. Should only be used by AIThreadLocalData. 171 //! Construct a root memory pool.
172 // Should only be used by AIThreadLocalData and AIThreadSafeSimpleDCRootPool_pbase.
171 AIAPRRootPool(void); 173 AIAPRRootPool(void);
172 ~AIAPRRootPool(); 174 ~AIAPRRootPool();
173 175