diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-03-22 22:32:55 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-03-25 13:11:12 +0200 |
commit | 54398c1583f18ef9daf1a9227691b14c3b7f4212 (patch) | |
tree | a172cf3f6ebc881f5b0ac9e7235e140c4ddebe1f /test/fence.cpp | |
parent | 074fa98ac4ea903049ba9d7386cdb2f050ea3b48 (diff) |
libcamera: base: timer: Drop start() overload with int argument
The start(unsigned int msec) overload is error-prone, as the argument
unit can easily be mistaken in callers. Drop it and update all callers
to use the start(std::chrono::milliseconds) overload instead.
The callers now need to use std::chrono_literals. The using statement
could be added to timer.h for convenience, but "using" is discouraged in
header files to avoid namespace pollution. Update the callers instead,
and while at it, sort the "using" statements alphabetically in tests.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
Diffstat (limited to 'test/fence.cpp')
-rw-r--r-- | test/fence.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/fence.cpp b/test/fence.cpp index 524db2a1..1e38bc2f 100644 --- a/test/fence.cpp +++ b/test/fence.cpp @@ -22,9 +22,9 @@ #include "camera_test.h" #include "test.h" -using namespace std::chrono_literals; using namespace libcamera; using namespace std; +using namespace std::chrono_literals; class FenceTest : public CameraTest, public Test { @@ -316,7 +316,7 @@ int FenceTest::run() /* Loop for one second. */ Timer timer; - timer.start(1000); + timer.start(1000ms); while (timer.isRunning() && expectedCompletionResult_) { if (completedRequest_ == signalledRequestId_ && setFence_) /* @@ -324,7 +324,7 @@ int FenceTest::run() * been re-queued with a fence. Start the timer to * signal the fence in 10 msec. */ - fenceTimer.start(10); + fenceTimer.start(10ms); dispatcher_->processEvents(); } |