aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/threadstackexecutorbase.h
diff options
context:
space:
mode:
Diffstat (limited to 'vespalib/src/vespa/vespalib/util/threadstackexecutorbase.h')
-rw-r--r--vespalib/src/vespa/vespalib/util/threadstackexecutorbase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespalib/src/vespa/vespalib/util/threadstackexecutorbase.h b/vespalib/src/vespa/vespalib/util/threadstackexecutorbase.h
index 59ed385b4f4..66a34bfde95 100644
--- a/vespalib/src/vespa/vespalib/util/threadstackexecutorbase.h
+++ b/vespalib/src/vespa/vespalib/util/threadstackexecutorbase.h
@@ -80,7 +80,7 @@ private:
std::unique_ptr<FastOS_ThreadPool> _pool;
mutable std::mutex _lock;
std::condition_variable _cond;
- Stats _stats;
+ ExecutorStats _stats;
Gate _executorCompletion;
ArrayQueue<TaggedTask> _tasks;
ArrayQueue<Worker*> _workers;
@@ -188,7 +188,7 @@ public:
**/
size_t num_idle_workers() const;
- Stats getStats() override;
+ ExecutorStats getStats() override;
Task::UP execute(Task::UP task) override;