libcamera: Correct include headers for Mutex classes

Mutex classes are defined in mutex.h. This replaces thread.h
include for the Mutex classes with mutex.h.

Signed-off-by: Hirokazu Honda <hiroh@chromium.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Hirokazu Honda 2021-12-01 16:53:42 +09:00 committed by Laurent Pinchart
parent c17f172842
commit 7e91f95160
13 changed files with 12 additions and 9 deletions

View file

@ -14,6 +14,8 @@
#include <sys/stat.h>
#include <sys/types.h>
#include <libcamera/base/utils.h>
#define LIBCAMERA_PUBLIC __attribute__((visibility("default")))
using namespace libcamera;