Implement filter bytecode support in lttng-session, and parse filter string
[lttng-tools.git] / src / lib / lttng-ctl / filter-ast.h
index 816562e230ce30bdd7ed498da172963b073e9535..97a3ae410001a91f62c98d4dbb1f54ea331a96cf 100644 (file)
@@ -152,15 +152,14 @@ struct filter_ast {
 const char *node_type(struct filter_node *node);
 
 struct ir_op;
 const char *node_type(struct filter_node *node);
 
 struct ir_op;
-struct filter_bytecode;
 
 struct filter_parser_ctx {
        yyscan_t scanner;
        struct filter_ast *ast;
        struct cds_list_head allocated_strings;
        struct ir_op *ir_root;
 
 struct filter_parser_ctx {
        yyscan_t scanner;
        struct filter_ast *ast;
        struct cds_list_head allocated_strings;
        struct ir_op *ir_root;
-       struct filter_bytecode_alloc *bytecode;
-       struct filter_bytecode_alloc *bytecode_reloc;
+       struct lttng_filter_bytecode_alloc *bytecode;
+       struct lttng_filter_bytecode_alloc *bytecode_reloc;
 };
 
 struct filter_parser_ctx *filter_parser_ctx_alloc(FILE *input);
 };
 
 struct filter_parser_ctx *filter_parser_ctx_alloc(FILE *input);
This page took 0.022992 seconds and 4 git commands to generate.