fix: Include signal.h instead of irq.h for prototype match check
[lttng-modules.git] / probes / lttng-probe-signal.c
CommitLineData
0ec73ddc
MD
1/*
2 * probes/lttng-probe-signal.c
3 *
4 * Copyright 2012 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * LTTng signal probes.
7 *
8 * Dual LGPL v2.1/GPL v2 license.
9 */
10
11#include <linux/module.h>
12
13/*
14 * Create the tracepoint static inlines from the kernel to validate that our
15 * trace event macros match the kernel we run on.
16 */
328ed554 17#include <trace/events/signal.h>
0ec73ddc
MD
18
19/*
20 * Create LTTng tracepoint probes.
21 */
22#define LTTNG_PACKAGE_BUILD
23#define CREATE_TRACE_POINTS
24#define TRACE_INCLUDE_PATH ../instrumentation/events/lttng-module
25
26#include "../instrumentation/events/lttng-module/signal.h"
27
28MODULE_LICENSE("GPL and additional rights");
29MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
30MODULE_DESCRIPTION("LTTng signal probes");
This page took 0.023101 seconds and 4 git commands to generate.