Fix: syscall event rule: emission sites not compared in is_equal
[lttng-tools.git] / src / common / filter.h
diff --git a/src/common/filter.h b/src/common/filter.h
deleted file mode 100644 (file)
index 2cbdd14..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
- *
- * SPDX-License-Identifier: GPL-2.0-only
- *
- */
-
-#ifndef LTTNG_COMMON_FILTER_H
-#define LTTNG_COMMON_FILTER_H
-
-#include <common/sessiond-comm/sessiond-comm.h>
-
-struct bytecode_symbol_iterator;
-
-/*
- * Create an iterator on a bytecode's symbols. The iterator points to the
- * first element after creation.
- */
-LTTNG_HIDDEN
-struct bytecode_symbol_iterator *bytecode_symbol_iterator_create(
-               struct lttng_filter_bytecode *bytecode);
-
-/*
- * Advance iterator of one element.
- *
- * Returns 0 if a next element exists or a negative value at the end.
- */
-LTTNG_HIDDEN
-int bytecode_symbol_iterator_next(struct bytecode_symbol_iterator *it);
-
-LTTNG_HIDDEN
-int bytecode_symbol_iterator_get_type(struct bytecode_symbol_iterator *it);
-
-LTTNG_HIDDEN
-const char *bytecode_symbol_iterator_get_name(
-               struct bytecode_symbol_iterator *it);
-
-LTTNG_HIDDEN
-void bytecode_symbol_iterator_destroy(struct bytecode_symbol_iterator *it);
-
-#endif /* LTTNG_COMMON_FILTER_H */
This page took 0.023197 seconds and 4 git commands to generate.