Tests: Add tracepoints to libbar, libfoo and libzzz
[lttng-tools.git] / tests / regression / ust / ust-dl / libfoo.c
... / ...
CommitLineData
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
8int foo(void)
9{
10 tracepoint(libfoo, foo);
11 bar();
12 return 1;
13}
This page took 0.024047 seconds and 4 git commands to generate.