Add tracelog documentation to lttng-ust(3)
[lttng-ust.git] / doc / examples / demo-tracelog / demo-tracelog.c
CommitLineData
eb8246a0
MD
1/*
2 * Copyright (C) 2009 Pierre-Marc Fournier
3 * Copyright (C) 2011-2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; version 2.1 of
8 * the License.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <stdlib.h>
21#include <stdio.h>
22#include <unistd.h>
23
24#include <lttng/tracelog.h>
25
26int main(int argc, char **argv)
27{
28 int i;
29 int delay = 0;
30
31 if (argc == 2)
32 delay = atoi(argv[1]);
33
34 fprintf(stderr, "Demo program starting.\n");
35
36 sleep(delay);
37
38 fprintf(stderr, "Tracing... ");
39 for (i = 0; i < 5; i++) {
40 tracelog(err, "Error condition %d", i);
41 }
42 fprintf(stderr, " done.\n");
43 return 0;
44}
This page took 0.024308 seconds and 4 git commands to generate.