summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2022-12-19 15:22:17 +0100
committerGitHub <noreply@github.com>2022-12-19 15:22:17 +0100
commit701ae22e4b334d3fe9fcca3b9aac95c4cf3d613e (patch)
treef14b60aabc204ec5d514272268db1513c0f902b0 /vespalib
parent041c857aa774df3ac8ea1ae83390f36691c6b2d3 (diff)
parent4e4169c32c2788f8e4875355a50115e9c95622ee (diff)
Merge pull request #25291 from vespa-engine/geirst/flush-meta-start-simplify
Simplify implementation of FlushEngine::FlushMeta::getStart().
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/util/time.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vespalib/src/vespa/vespalib/util/time.h b/vespalib/src/vespa/vespalib/util/time.h
index 783831b5171..2355b269fa5 100644
--- a/vespalib/src/vespa/vespalib/util/time.h
+++ b/vespalib/src/vespa/vespalib/util/time.h
@@ -84,6 +84,7 @@ private:
public:
Timer() : _start(steady_clock::now()) {}
~Timer();
+ steady_time get_start() const { return _start; }
duration elapsed() const { return (steady_clock::now() - _start); }
static void waitAtLeast(duration dur, bool busyWait);
};