diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-08-18 03:11:27 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-08-19 19:06:37 +0300 |
commit | fd0087b5d8608eb1dc1e1a3da5ddafd83d43fc79 (patch) | |
tree | ddaeac42ef501be42b40ab8cd40714cf107cfc0d /test/object-invoke.cpp | |
parent | 8c9deeb30fa6930019788b619ad9081d30c6a6e2 (diff) |
test: Get event dispatcher from current thread
For all tests that don't otherwise require access to the camera manager,
get the event dispatcher from the current thread instead of the camera
manager. This prepares for the removal of CameraManager::instance().
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'test/object-invoke.cpp')
-rw-r--r-- | test/object-invoke.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/object-invoke.cpp b/test/object-invoke.cpp index 7221930f..37a27440 100644 --- a/test/object-invoke.cpp +++ b/test/object-invoke.cpp @@ -9,12 +9,11 @@ #include <iostream> #include <thread> -#include <libcamera/camera_manager.h> #include <libcamera/event_dispatcher.h> #include <libcamera/object.h> -#include "thread.h" #include "test.h" +#include "thread.h" using namespace std; using namespace libcamera; @@ -61,7 +60,7 @@ class ObjectInvokeTest : public Test protected: int run() { - EventDispatcher *dispatcher = CameraManager::instance()->eventDispatcher(); + EventDispatcher *dispatcher = Thread::current()->eventDispatcher(); InvokedObject object; /* |