Pre-assign fixed loglevels
[lttng-ust.git] / tests / demo / ust_tests_demo3.h
CommitLineData
25c9a6e9
MD
1#undef TRACEPOINT_PROVIDER
2#define TRACEPOINT_PROVIDER ust_tests_demo3
3
4#if !defined(_TRACEPOINT_UST_TESTS_DEMO3_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
5#define _TRACEPOINT_UST_TESTS_DEMO3_H
6
7#ifdef __cplusplus
8extern "C" {
9#endif
10
11/*
12 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13 *
14 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
15 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
16 *
17 * Permission is hereby granted to use or copy this program
18 * for any purpose, provided the above notices are retained on all copies.
19 * Permission to modify the code and to distribute modified code is granted,
20 * provided the above notices are retained, and a notice that the code was
21 * modified is included with the above copyright notice.
22 */
23
24#include <lttng/tracepoint.h>
25
25c9a6e9
MD
26TRACEPOINT_EVENT(ust_tests_demo3, done,
27 TP_ARGS(int, value),
28 TP_FIELDS(
29 ctf_integer(int, value, value)
30 )
31)
75c5ad79 32TRACEPOINT_LOGLEVEL(ust_tests_demo3, done, TRACE_WARNING)
25c9a6e9
MD
33
34#endif /* _TRACEPOINT_UST_TESTS_DEMO3_H */
35
36#undef TRACEPOINT_INCLUDE_FILE
37#define TRACEPOINT_INCLUDE_FILE ./ust_tests_demo3.h
38
39/* This part must be outside ifdef protection */
40#include <lttng/tracepoint-event.h>
41
42#ifdef __cplusplus
43}
44#endif
This page took 0.024296 seconds and 4 git commands to generate.