summaryrefslogtreecommitdiff
path: root/include/libcamera/internal/tracepoints/buffer_enums.tp
blob: c5a9325236a69f5deb7959b625f3b9c51094db97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2020, Google Inc.
 *
 * buffer_enums.tp - Tracepoint definition for enums in the buffer class
 */

TRACEPOINT_ENUM(
	libcamera,
	buffer_status,
	TP_ENUM_VALUES(
		ctf_enum_value("FrameSuccess", 0)
		ctf_enum_value("FrameError", 1)
		ctf_enum_value("FrameCancelled", 2)
	)
)