From: Mathieu Desnoyers Date: Wed, 7 Apr 2021 17:51:28 +0000 (-0400) Subject: Introduce internal event header X-Git-Tag: v2.13.0-rc1~21 X-Git-Url: https://git.lttng.org/?p=lttng-modules.git;a=commitdiff_plain;h=92bc1e2318d93c9072ae79d7fd6a7c5953cb739e Introduce internal event header This header is to be included by the tracer, but not by tracepoint probes. Signed-off-by: Mathieu Desnoyers Change-Id: Ic9501bb58c4156d3b037b4f15251d03e25cd45f9 --- diff --git a/include/lttng/events-internal.h b/include/lttng/events-internal.h new file mode 100644 index 00000000..6749b383 --- /dev/null +++ b/include/lttng/events-internal.h @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only) + * + * lttng/events-internal.h + * + * Copyright (C) 2010-2012 Mathieu Desnoyers + */ + +#ifndef _LTTNG_EVENTS_INTERNAL_H +#define _LTTNG_EVENTS_INTERNAL_H + +#endif /* _LTTNG_EVENTS_INTERNAL_H */ diff --git a/src/lttng-abi.c b/src/lttng-abi.c index a78205c4..5b6ef1f6 100644 --- a/src/lttng-abi.c +++ b/src/lttng-abi.c @@ -42,6 +42,7 @@ #include #include #include +#include #include #include #include diff --git a/src/lttng-events.c b/src/lttng-events.c index 1ae0d85c..a21073d3 100644 --- a/src/lttng-events.c +++ b/src/lttng-events.c @@ -36,6 +36,7 @@ #include #include #include +#include #include #include #include