From: Mathieu Desnoyers Date: Mon, 25 Sep 2017 13:50:49 +0000 (-0400) Subject: Filter: add FILTER_OP_RETURN_S64 instruction X-Git-Tag: v2.11.0-rc1~169 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=ba8f6b16464a24e4ce243eeea34aa0fb11078cfd Filter: add FILTER_OP_RETURN_S64 instruction Signed-off-by: Mathieu Desnoyers Signed-off-by: Jérémie Galarneau --- diff --git a/src/lib/lttng-ctl/filter/filter-bytecode.h b/src/lib/lttng-ctl/filter/filter-bytecode.h index a0913af8b..c2e8c7839 100644 --- a/src/lib/lttng-ctl/filter/filter-bytecode.h +++ b/src/lib/lttng-ctl/filter/filter-bytecode.h @@ -203,6 +203,8 @@ enum filter_op { FILTER_OP_UNARY_BIT_NOT = 98, + FILTER_OP_RETURN_S64 = 99, + NR_FILTER_OPS, };