diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2024-01-18 23:25:22 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2024-01-25 02:38:58 +0200 |
commit | fc4ded714dc0aafa0ad28d532c5f5f74b4cddd16 (patch) | |
tree | 34d5efdb3425d1be104c841ab2a9a6ad4ff86dba /src | |
parent | 64502c8d4a3c0f440bf265a5ad03be00653957ba (diff) |
libcamera: object: Fix thread-bound reference in documentation
The Object::message() function is documented as thread-bound without
using the correct \threadbound reference. Fix it to ensure it gets
included in the thread safety context list.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Milan Zamazal <mzamazal@redhat.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/libcamera/base/object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcamera/base/object.cpp b/src/libcamera/base/object.cpp index 92cecd22..1fce5a2a 100644 --- a/src/libcamera/base/object.cpp +++ b/src/libcamera/base/object.cpp @@ -259,7 +259,7 @@ void Object::message(Message *msg) * Moving an object that has a parent is not allowed, and causes undefined * behaviour. * - * \context This function is thread-bound. + * \context This function is \threadbound. */ void Object::moveToThread(Thread *thread) { |