aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/apps/vbench/vbench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vbench/src/apps/vbench/vbench.cpp')
-rw-r--r--vbench/src/apps/vbench/vbench.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vbench/src/apps/vbench/vbench.cpp b/vbench/src/apps/vbench/vbench.cpp
index d37ed7688de..edaa68b8838 100644
--- a/vbench/src/apps/vbench/vbench.cpp
+++ b/vbench/src/apps/vbench/vbench.cpp
@@ -8,7 +8,7 @@
using namespace vbench;
-VESPA_THREAD_STACK_TAG(vbench_executor);
+VESPA_THREAD_STACK_TAG(vbench_thread);
typedef vespalib::SignalHandler SIG;
@@ -44,7 +44,7 @@ int run(const std::string &cfg_name) {
VBench vbench(cfg);
NotifyDone notify(done);
vespalib::RunnablePair runBoth(vbench, notify);
- vespalib::Thread thread(runBoth, vbench_executor);
+ vespalib::Thread thread(runBoth, vbench_thread);
thread.start();
while (!SIG::INT.check() && !SIG::TERM.check() && !done.await(1s)) {}
if (!done.await(vespalib::duration::zero())) {