Set hidden visibility for calls used in lttng-ctl
[lttng-tools.git] / src / lib / lttng-ctl / filter-ast.h
index 97a3ae410001a91f62c98d4dbb1f54ea331a96cf..176716474c850b297a6858d31aded176422f8e55 100644 (file)
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+/*
+ * Note: filter-ast.h should be included before filter-parser.h.
+ */
+
 #include <urcu/list.h>
 #include <stdint.h>
 
@@ -87,6 +91,7 @@ enum unary_op_type {
        AST_UNARY_PLUS,
        AST_UNARY_MINUS,
        AST_UNARY_NOT,
+       AST_UNARY_BIN_NOT,
 };
 
 enum ast_link_type {
@@ -114,6 +119,7 @@ struct filter_node {
                                AST_EXP_UNKNOWN = 0,
                                AST_EXP_STRING,
                                AST_EXP_CONSTANT,
+                               AST_EXP_FLOAT_CONSTANT,
                                AST_EXP_IDENTIFIER,
                                AST_EXP_NESTED,
                        } type;
@@ -122,6 +128,7 @@ struct filter_node {
                        union {
                                char *string;
                                uint64_t constant;
+                               double float_constant;
                                char *identifier;
                                /*
                                 * child can be nested.
This page took 0.025212 seconds and 4 git commands to generate.