summaryrefslogtreecommitdiffstats
path: root/staging_vespalib/src/vespa/vespalib/util/foreground_thread_executor.h
diff options
context:
space:
mode:
Diffstat (limited to 'staging_vespalib/src/vespa/vespalib/util/foreground_thread_executor.h')
-rw-r--r--staging_vespalib/src/vespa/vespalib/util/foreground_thread_executor.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/staging_vespalib/src/vespa/vespalib/util/foreground_thread_executor.h b/staging_vespalib/src/vespa/vespalib/util/foreground_thread_executor.h
index 575552971fa..ff523b1e35d 100644
--- a/staging_vespalib/src/vespa/vespalib/util/foreground_thread_executor.h
+++ b/staging_vespalib/src/vespa/vespalib/util/foreground_thread_executor.h
@@ -25,7 +25,8 @@ public:
Stats getStats() override {
return ExecutorStats(ExecutorStats::QueueSizeT(), _accepted.load(std::memory_order_relaxed), 0);
}
- virtual void setTaskLimit(uint32_t taskLimit) override { (void) taskLimit; }
+ void setTaskLimit(uint32_t taskLimit) override { (void) taskLimit; }
+ void wakeup() override { }
};
}