summaryrefslogtreecommitdiff
path: root/cppu/source/threadpool/threadpool.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-15 17:39:35 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-17 17:55:18 +0100
commit34a44156b3983849749d82b90d82b84aeb538aae (patch)
tree393815dd01ca56cadb7b8f63f477b553e98c06f6 /cppu/source/threadpool/threadpool.hxx
parent5dd4a0690124c0d3fc1835a59e0fca2d12773afe (diff)
cppu: sal_Bool -> bool
Change-Id: I1288f1f6f38d1475b4eb5272509e479bd9f2552d
Diffstat (limited to 'cppu/source/threadpool/threadpool.hxx')
-rw-r--r--cppu/source/threadpool/threadpool.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cppu/source/threadpool/threadpool.hxx b/cppu/source/threadpool/threadpool.hxx
index 18bb509486e7..2ee29ff5ddc6 100644
--- a/cppu/source/threadpool/threadpool.hxx
+++ b/cppu/source/threadpool/threadpool.hxx
@@ -90,7 +90,7 @@ namespace cppu_threadpool {
void dispose( sal_Int64 nDisposeId );
void destroy( sal_Int64 nDisposeId );
- sal_Bool isDisposed( sal_Int64 nDisposeId );
+ bool isDisposed( sal_Int64 nDisposeId );
private:
::osl::Mutex m_mutex;
@@ -128,7 +128,7 @@ namespace cppu_threadpool {
void destroy( sal_Int64 nDisposeId );
void addJob( const ByteSequence &aThreadId,
- sal_Bool bAsynchron,
+ bool bAsynchron,
void *pThreadSpecificData,
RequestFun * doRequest );
@@ -138,7 +138,7 @@ namespace cppu_threadpool {
/********
* @return true, if queue could be successfully revoked.
********/
- sal_Bool revokeQueue( const ByteSequence & aThreadId , sal_Bool bAsynchron );
+ bool revokeQueue( const ByteSequence & aThreadId , bool bAsynchron );
void waitInPool( rtl::Reference< ORequestThread > const & pThread );
@@ -147,7 +147,7 @@ namespace cppu_threadpool {
ThreadAdmin & getThreadAdmin() { return m_aThreadAdmin; }
private:
- void createThread( JobQueue *pQueue, const ByteSequence &aThreadId, sal_Bool bAsynchron);
+ void createThread( JobQueue *pQueue, const ByteSequence &aThreadId, bool bAsynchron);
ThreadIdHashMap m_mapQueue;