vscode: Add configurations to run the executables under the debugger
[lttng-tools.git] / src / common / filter.hpp
CommitLineData
71a559f8 1/*
ab5be9fa 2 * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
71a559f8 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
71a559f8 5 *
71a559f8
JG
6 */
7
8#ifndef LTTNG_COMMON_FILTER_H
9#define LTTNG_COMMON_FILTER_H
10
c9e313bc 11#include <common/sessiond-comm/sessiond-comm.hpp>
71a559f8
JG
12
13struct bytecode_symbol_iterator;
14
15/*
16 * Create an iterator on a bytecode's symbols. The iterator points to the
17 * first element after creation.
18 */
28f23191 19struct bytecode_symbol_iterator *bytecode_symbol_iterator_create(struct lttng_bytecode *bytecode);
71a559f8
JG
20
21/*
22 * Advance iterator of one element.
23 *
24 * Returns 0 if a next element exists or a negative value at the end.
25 */
26int bytecode_symbol_iterator_next(struct bytecode_symbol_iterator *it);
27
28int bytecode_symbol_iterator_get_type(struct bytecode_symbol_iterator *it);
29
28f23191 30const char *bytecode_symbol_iterator_get_name(struct bytecode_symbol_iterator *it);
71a559f8
JG
31
32void bytecode_symbol_iterator_destroy(struct bytecode_symbol_iterator *it);
33
34#endif /* LTTNG_COMMON_FILTER_H */
This page took 0.06844 seconds and 4 git commands to generate.