diff options
Diffstat (limited to 'linden/indra/llcommon/llworkerthread.h')
-rw-r--r-- | linden/indra/llcommon/llworkerthread.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/llcommon/llworkerthread.h b/linden/indra/llcommon/llworkerthread.h index 17b7e7b..278f8e0 100644 --- a/linden/indra/llcommon/llworkerthread.h +++ b/linden/indra/llcommon/llworkerthread.h | |||
@@ -3,6 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (c) 2004-2007, Linden Research, Inc. | 4 | * Copyright (c) 2004-2007, Linden Research, Inc. |
5 | * | 5 | * |
6 | * Second Life Viewer Source Code | ||
6 | * The source code in this file ("Source Code") is provided by Linden Lab | 7 | * The source code in this file ("Source Code") is provided by Linden Lab |
7 | * to you under the terms of the GNU General Public License, version 2.0 | 8 | * to you under the terms of the GNU General Public License, version 2.0 |
8 | * ("GPL"), unless you have obtained a separate licensing agreement | 9 | * ("GPL"), unless you have obtained a separate licensing agreement |
@@ -90,7 +91,7 @@ public: | |||
90 | handle_t addWorkRequest(LLWorkerClass* workerclass, S32 param, U32 priority = PRIORITY_NORMAL); | 91 | handle_t addWorkRequest(LLWorkerClass* workerclass, S32 param, U32 priority = PRIORITY_NORMAL); |
91 | 92 | ||
92 | void deleteWorker(LLWorkerClass* workerclass); // schedule for deletion | 93 | void deleteWorker(LLWorkerClass* workerclass); // schedule for deletion |
93 | S32 getNumDeletes() { return mDeleteList.size(); } // debug | 94 | S32 getNumDeletes() { return (S32)mDeleteList.size(); } // debug |
94 | }; | 95 | }; |
95 | 96 | ||
96 | //============================================================================ | 97 | //============================================================================ |