Filter: add floating point support
[lttng-tools.git] / src / lib / lttng-ctl / filter-ir.h
index 2ec4cc56f6090758c40ada4f388d6bd549421173..39ac76c4174c53beca08bd21cd126a3298e66726 100644 (file)
@@ -35,6 +35,7 @@ enum ir_data_type {
        IR_DATA_UNKNOWN = 0,
        IR_DATA_STRING,
        IR_DATA_NUMERIC,        /* numeric and boolean */
+       IR_DATA_FLOAT,
        IR_DATA_FIELD_REF,
 };
 
@@ -62,6 +63,7 @@ struct ir_op_load {
        union {
                char *string;
                int64_t num;
+               double flt;
                char *ref;
        } u;
 };
This page took 0.022892 seconds and 4 git commands to generate.