X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Ffilter.h;h=305434bf6e0d1a5de3e626d6e6ed114ec403ac69;hp=f5dcdf319f8f6fdfd26a82210e9d8e7c0da46105;hb=HEAD;hpb=7966af5763c4aaca39df9bbfa9277ff15715c720 diff --git a/src/common/filter.h b/src/common/filter.h deleted file mode 100644 index f5dcdf319..000000000 --- a/src/common/filter.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (C) 2016 Jérémie Galarneau - * - * SPDX-License-Identifier: GPL-2.0-only - * - */ - -#ifndef LTTNG_COMMON_FILTER_H -#define LTTNG_COMMON_FILTER_H - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -struct bytecode_symbol_iterator; - -/* - * Create an iterator on a bytecode's symbols. The iterator points to the - * first element after creation. - */ -struct bytecode_symbol_iterator *bytecode_symbol_iterator_create( - struct lttng_bytecode *bytecode); - -/* - * Advance iterator of one element. - * - * Returns 0 if a next element exists or a negative value at the end. - */ -int bytecode_symbol_iterator_next(struct bytecode_symbol_iterator *it); - -int bytecode_symbol_iterator_get_type(struct bytecode_symbol_iterator *it); - -const char *bytecode_symbol_iterator_get_name( - struct bytecode_symbol_iterator *it); - -void bytecode_symbol_iterator_destroy(struct bytecode_symbol_iterator *it); - -#ifdef __cplusplus -} -#endif - -#endif /* LTTNG_COMMON_FILTER_H */