tests: Move to kernel style SPDX license identifiers
[lttng-tools.git] / tests / regression / ust / overlap / demo / ust_tests_demo.h
1 /*
2 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 */
7
8 #undef TRACEPOINT_PROVIDER
9 #define TRACEPOINT_PROVIDER ust_tests_demo
10
11 #if !defined(_TRACEPOINT_UST_TESTS_DEMO_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
12 #define _TRACEPOINT_UST_TESTS_DEMO_H
13
14 #include <lttng/tracepoint.h>
15
16 TRACEPOINT_EVENT(ust_tests_demo, starting,
17 TP_ARGS(int, value),
18 TP_FIELDS(
19 ctf_integer(int, value, value)
20 )
21 )
22 TRACEPOINT_LOGLEVEL(ust_tests_demo, starting, TRACE_CRIT)
23
24 /*
25 * Dummy model information, just for example. TODO: we should check if
26 * EMF model URI have some standard format we should follow.
27 */
28 TRACEPOINT_MODEL_EMF_URI(ust_tests_demo, starting,
29 "http://example.com/path_to_model?q=ust_tests_demo:starting")
30
31 TRACEPOINT_EVENT(ust_tests_demo, done,
32 TP_ARGS(int, value),
33 TP_FIELDS(
34 ctf_integer(int, value, value)
35 )
36 )
37 TRACEPOINT_LOGLEVEL(ust_tests_demo, done, TRACE_CRIT)
38
39 TRACEPOINT_MODEL_EMF_URI(ust_tests_demo, done,
40 "http://example.com/path_to_model?q=ust_tests_demo:done")
41
42 #endif /* _TRACEPOINT_UST_TESTS_DEMO_H */
43
44 #undef TRACEPOINT_INCLUDE_FILE
45 #define TRACEPOINT_INCLUDE_FILE ./ust_tests_demo.h
46
47 /* This part must be outside ifdef protection */
48 #include <lttng/tracepoint-event.h>
This page took 0.031364 seconds and 5 git commands to generate.