Fix: syscall event rule: emission sites not compared in is_equal
[lttng-tools.git] / src / common / lttng-elf.hpp
1 #ifndef _LTTNG_ELF_H
2 #define _LTTNG_ELF_H
3 /*
4 * Copyright (C) 2017 Francis Deslauriers <francis.deslauriers@efficios.com>
5 * Copyright (C) 2017 Erica Bugden <erica.bugden@efficios.com>
6 *
7 * SPDX-License-Identifier: LGPL-2.1-or-later
8 *
9 */
10
11 #include <lttng/lttng-export.h>
12
13 #include <stdint.h>
14
15 extern "C" LTTNG_EXPORT int lttng_elf_get_symbol_offset(int fd, char *symbol, uint64_t *offset);
16
17 extern "C" LTTNG_EXPORT int lttng_elf_get_sdt_probe_offsets(int fd,
18 const char *provider_name,
19 const char *probe_name,
20 uint64_t **offsets,
21 uint32_t *nb_probe);
22
23 #endif /* _LTTNG_ELF_H */
This page took 0.02938 seconds and 4 git commands to generate.