Introduce internal event header
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 7 Apr 2021 17:51:28 +0000 (13:51 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 14 Apr 2021 20:38:35 +0000 (16:38 -0400)
This header is to be included by the tracer, but not by tracepoint
probes.

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: Ic9501bb58c4156d3b037b4f15251d03e25cd45f9

include/lttng/events-internal.h [new file with mode: 0644]
src/lttng-abi.c
src/lttng-events.c

diff --git a/include/lttng/events-internal.h b/include/lttng/events-internal.h
new file mode 100644 (file)
index 0000000..6749b38
--- /dev/null
@@ -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 <mathieu.desnoyers@efficios.com>
+ */
+
+#ifndef _LTTNG_EVENTS_INTERNAL_H
+#define _LTTNG_EVENTS_INTERNAL_H
+
+#endif /* _LTTNG_EVENTS_INTERNAL_H */
index a78205c4159392bf5b69d2aa87428dacfc8d8fff..5b6ef1f6e6d5de74514113b05a53678bf1cb071f 100644 (file)
@@ -42,6 +42,7 @@
 #include <lttng/abi.h>
 #include <lttng/abi-old.h>
 #include <lttng/events.h>
+#include <lttng/events-internal.h>
 #include <lttng/tracer.h>
 #include <lttng/tp-mempool.h>
 #include <ringbuffer/frontend_types.h>
index 1ae0d85c874759cc4e28a4ff1f0a6e63b01bbc99..a21073d37c5af03de8a09bc15817710fe7c4cea9 100644 (file)
@@ -36,6 +36,7 @@
 #include <wrapper/types.h>
 #include <lttng/kernel-version.h>
 #include <lttng/events.h>
+#include <lttng/events-internal.h>
 #include <lttng/lttng-bytecode.h>
 #include <lttng/tracer.h>
 #include <lttng/event-notifier-notification.h>
This page took 0.027677 seconds and 4 git commands to generate.