Move to kernel style SPDX license identifiers
[lttng-ust.git] / doc / examples / easy-ust / sample.c
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright (C) 2011-2012 Matthew Khouzam <matthew.khouzam@ericsson.com>
5 * Copyright (C) 2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 */
7
8 #include <unistd.h>
9
10 /*
11 * We need to define TRACEPOINT_DEFINE in one C file in the program
12 * before including provider headers.
13 */
14 #define TRACEPOINT_DEFINE
15 #include "sample_component_provider.h"
16
17 int main(int argc, char **argv)
18 {
19 int i = 0;
20
21 for (i = 0; i < 100000; i++) {
22 tracepoint(sample_component, message, "Hello World");
23 usleep(1);
24 }
25 return 0;
26 }
This page took 0.02904 seconds and 4 git commands to generate.