Fix: tests: include callsites.h from callsites.c
[lttng-tools.git] / tests / regression / ust / multi-lib / callsites.c
1 /*
2 * Copyright (C) - 2018 Francis Deslauriers <francis.deslauriers@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8 #define TRACEPOINT_DEFINE
9 #define TRACEPOINT_PROBE_DYNAMIC_LINKAGE
10 #include "probes.h"
11
12 #include <stdint.h>
13 #include <stdio.h>
14 #include <time.h>
15 #include <pthread.h>
16
17 #include "callsites.h"
18
19 #ifndef VALUE
20 #define VALUE (-1)
21 #endif
22
23 void call_tracepoint(void)
24 {
25 tracepoint(multi, tp, VALUE);
26 }
27
This page took 0.030621 seconds and 5 git commands to generate.