summaryrefslogtreecommitdiff
path: root/cppu/source/threadpool/thread.hxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-04-26 19:50:18 +0000
committerKurt Zenker <kz@openoffice.org>2006-04-26 19:50:18 +0000
commit6e5fc90f28ad6e2550d824f8c3cbcb4744332d77 (patch)
treeb71e7f77d1550af8f47d05dfc602612783effe11 /cppu/source/threadpool/thread.hxx
parent6275bc5a2b38165fb958d53af93390786b7e60ff (diff)
INTEGRATION: CWS jsc9 (1.5.2); FILE MERGED
2006/04/26 14:15:33 jsc 1.5.2.1: #134738# move fixes back to previous version
Diffstat (limited to 'cppu/source/threadpool/thread.hxx')
-rw-r--r--cppu/source/threadpool/thread.hxx12
1 files changed, 3 insertions, 9 deletions
diff --git a/cppu/source/threadpool/thread.hxx b/cppu/source/threadpool/thread.hxx
index c8bb15e3e..a5e353964 100644
--- a/cppu/source/threadpool/thread.hxx
+++ b/cppu/source/threadpool/thread.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: thread.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: hr $ $Date: 2006-04-19 13:49:20 $
+ * last change: $Author: kz $ $Date: 2006-04-26 20:50:18 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -37,9 +37,6 @@
#include <list>
-#ifndef _RTL_REF_HXX_
-#include "rtl/ref.hxx"
-#endif
#ifndef _SAL_TYPES_H_
#include <sal/types.h>
#endif
@@ -51,7 +48,6 @@
namespace cppu_threadpool {
class JobQueue;
- class ThreadPool;
//-----------------------------------------
// private thread class for the threadpool
@@ -60,8 +56,7 @@ namespace cppu_threadpool {
class ORequestThread
{
public:
- ORequestThread( rtl::Reference< ThreadPool > const & threadPool,
- JobQueue * pQueue,
+ ORequestThread( JobQueue * ,
const ::rtl::ByteSequence &aThreadId,
sal_Bool bAsynchron );
~ORequestThread();
@@ -77,7 +72,6 @@ namespace cppu_threadpool {
private:
oslThread m_thread;
- rtl::Reference< ThreadPool > m_threadPool;
JobQueue *m_pQueue;
::rtl::ByteSequence m_aThreadId;
sal_Bool m_bAsynchron;