summaryrefslogtreecommitdiff
path: root/cppu/source/threadpool/thread.cxx
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2000-09-29 11:42:18 +0000
committerJörg Budischewski <jbu@openoffice.org>2000-09-29 11:42:18 +0000
commit460096112273f6de8898fa4e98e16f3ada349e61 (patch)
treedacb838c4518b9690e5a6fcf7719f356c575ed8d /cppu/source/threadpool/thread.cxx
parent3f7b888f00dbd680128a2c29c70a3962bc67b678 (diff)
temporary hack for thread local storage removed
Diffstat (limited to 'cppu/source/threadpool/thread.cxx')
-rw-r--r--cppu/source/threadpool/thread.cxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/cppu/source/threadpool/thread.cxx b/cppu/source/threadpool/thread.cxx
index 9d006ff142f2..3ff7d10b3973 100644
--- a/cppu/source/threadpool/thread.cxx
+++ b/cppu/source/threadpool/thread.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: thread.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:25:52 $
+ * last change: $Author: jbu $ $Date: 2000-09-29 12:42:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -127,9 +127,6 @@ namespace cppu_threadpool {
delete this;
}
- // hack during no proper threadlocalstorage support
- void SAL_CALL destructCurrentId();
-
void ORequestThread::run()
{
while ( m_pQueue )
@@ -165,6 +162,5 @@ namespace cppu_threadpool {
cppu_threadpool::ThreadPool::getInstance()->waitInPool( this );
}
- destructCurrentId();
}
}