summaryrefslogtreecommitdiff
path: root/include/comphelper/threadpool.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-12-22 14:32:22 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-23 04:46:35 +0000
commit46d3163f779a43cc7c023a6e8141f990e5d23292 (patch)
tree99c87b90b69f3c59edb91206b364a4e5c9b1c640 /include/comphelper/threadpool.hxx
parentc2a20af2c12bf75e7378a3a9dbc50a4dddabdebc (diff)
loplugin:unusedmethods
Change-Id: Ife4c8d948ffa116f044d43903de9485e43cfcae5 Reviewed-on: https://gerrit.libreoffice.org/32336 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/comphelper/threadpool.hxx')
-rw-r--r--include/comphelper/threadpool.hxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/comphelper/threadpool.hxx b/include/comphelper/threadpool.hxx
index 9f7692252fbf..32fcb64198d7 100644
--- a/include/comphelper/threadpool.hxx
+++ b/include/comphelper/threadpool.hxx
@@ -85,13 +85,10 @@ private:
@return a new task to perform, or NULL if list empty or terminated
*/
ThreadTask *popWorkLocked( std::unique_lock< std::mutex > & rGuard, bool bWait );
- void startWorkLocked();
- void stopWorkLocked();
/// signalled when all in-progress tasks are complete
std::mutex maMutex;
std::condition_variable maTasksChanged;
- sal_Int32 mnThreadsWorking;
bool mbTerminate;
std::vector< ThreadTask * > maTasks;
std::vector< rtl::Reference< ThreadWorker > > maWorkers;