summaryrefslogtreecommitdiffstats
path: root/storageframework
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-10-13 12:06:51 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-10-13 12:06:51 +0200
commit2887ea1516ab72e10612c192d1af3296f8af97f0 (patch)
treefebe9bb68264c80320635d8481d4b24a64d32fa7 /storageframework
parent6c1483a1316bd4ef18674f8fb2461a1b49ef64c3 (diff)
Avoid that we miss a stop that happens while we are STARTING.
Diffstat (limited to 'storageframework')
-rw-r--r--storageframework/src/vespa/storageframework/defaultimplementation/thread/threadimpl.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/storageframework/src/vespa/storageframework/defaultimplementation/thread/threadimpl.h b/storageframework/src/vespa/storageframework/defaultimplementation/thread/threadimpl.h
index bdc491a5da6..798251f0573 100644
--- a/storageframework/src/vespa/storageframework/defaultimplementation/thread/threadimpl.h
+++ b/storageframework/src/vespa/storageframework/defaultimplementation/thread/threadimpl.h
@@ -49,12 +49,8 @@ class ThreadImpl : public Thread
void run();
public:
- ThreadImpl(ThreadPoolImpl&,
- Runnable&,
- vespalib::stringref id,
- uint64_t waitTimeMs,
- uint64_t maxProcessTimeMs,
- int ticksBeforeWait);
+ ThreadImpl(ThreadPoolImpl&, Runnable&, vespalib::stringref id, uint64_t waitTimeMs,
+ uint64_t maxProcessTimeMs, int ticksBeforeWait);
~ThreadImpl();
bool interrupted() const override;