Tests: Add tracepoints to libbar, libfoo and libzzz
[lttng-tools.git] / tests / regression / ust / ust-dl / libfoo.c
1 #include "libfoo.h"
2 #include "libbar.h"
3
4 #define TRACEPOINT_DEFINE
5 #define TRACEPOINT_PROBE_DYNAMIC_LINKAGE
6 #include "libfoo-tp.h"
7
8 int foo(void)
9 {
10 tracepoint(libfoo, foo);
11 bar();
12 return 1;
13 }
This page took 0.032112 seconds and 6 git commands to generate.