From patchwork Mon Jul 15 09:29:38 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 1702 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id C1B1461572 for ; Mon, 15 Jul 2019 11:30:12 +0200 (CEST) Received: from pendragon.ideasonboard.com (unknown [IPv6:2a00:79e1:abc:3602:59ec:6c:1869:337]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 74624578 for ; Mon, 15 Jul 2019 11:30:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1563183012; bh=HzZ/t5MSkf6xJ2IXp18ns4v9UW0L2z5OEL069LAIvaQ=; h=From:To:Subject:Date:From; b=QRkDFIFPyNqbybgsJCKDPahgjLHBNkXIenMQ1iLX1+VJ9h9exZ8LyT6S7c2yEdfwn xNl/o5w0T6Gj9amgxjLtqnZPINhpoN0JTmB8XYL81fbsurLumrTf3CT/6+lxeAfTbC S2Ct9Jb/ilSSWeeB/SwN85OxKpAb7b9MkwFrWxpU= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Mon, 15 Jul 2019 12:29:38 +0300 Message-Id: <20190715092939.15349-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 1/2] libcamera: message: Document Message::SignalMessage X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jul 2019 09:30:12 -0000 The SignalMessage type is undocumented. Fix it. Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi --- src/libcamera/message.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libcamera/message.cpp b/src/libcamera/message.cpp index 0580c1051622..9f22ad7fc0b0 100644 --- a/src/libcamera/message.cpp +++ b/src/libcamera/message.cpp @@ -41,6 +41,8 @@ LOG_DEFINE_CATEGORY(Message) * \brief The message type * \var Message::None * \brief Invalid message type + * \var Message::SignalMessage + * \brief Asynchronous signal delivery across threads */ /**