Install easy-ust and gen-tp examples in doc/
[lttng-ust.git] / doc / examples / gen-tp / sample.c
1 /*
2 * Copyright (C) 2011-2012 Matthew Khouzam <matthew.khouzam@ericsson.com>
3 * Copyright (C) 2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
6 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
7 *
8 * Permission is hereby granted to use or copy this program for any
9 * purpose, provided the above notices are retained on all copies.
10 * Permission to modify the code and to distribute modified code is
11 * granted, provided the above notices are retained, and a notice that
12 * the code was modified is included with the above copyright notice.
13 */
14 #include <unistd.h>
15
16 #include "sample_tracepoint.h"
17 int main(int argc, char **argv)
18 {
19 int i = 0;
20
21 for (i = 0; i < 100000; i++) {
22 tracepoint(sample_tracepoint, message, "Hello World\n");
23 usleep(1);
24 }
25 return 0;
26 }
This page took 0.046676 seconds and 5 git commands to generate.