diff options
Diffstat (limited to 'tools/perf/util/bpf_map.h')
-rw-r--r-- | tools/perf/util/bpf_map.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tools/perf/util/bpf_map.h b/tools/perf/util/bpf_map.h new file mode 100644 index 0000000000..c2f7c13cba --- /dev/null +++ b/tools/perf/util/bpf_map.h @@ -0,0 +1,23 @@ +// SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) +#ifndef __PERF_BPF_MAP_H +#define __PERF_BPF_MAP_H 1 + +#include <stdio.h> +struct bpf_map; + +#ifdef HAVE_LIBBPF_SUPPORT + +int bpf_map__fprintf(struct bpf_map *map, FILE *fp); + +#else + +#include <linux/compiler.h> + +static inline int bpf_map__fprintf(struct bpf_map *map __maybe_unused, FILE *fp __maybe_unused) +{ + return 0; +} + +#endif // HAVE_LIBBPF_SUPPORT + +#endif // __PERF_BPF_MAP_H |