X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=include%2Flttng%2Fust-events.h;h=331506bd69d838a0c77075489ec3830b859dbe86;hb=8a92ed2aba5250d41e31d1af5620a2317105c91a;hp=f501fd1459bd6e96356ab52f1a3ddc424447aeb0;hpb=a543151c94023ca7c694cb89c4d9cecceda775dd;p=lttng-ust.git diff --git a/include/lttng/ust-events.h b/include/lttng/ust-events.h index f501fd14..331506bd 100644 --- a/include/lttng/ust-events.h +++ b/include/lttng/ust-events.h @@ -299,10 +299,19 @@ struct lttng_ust_filter_bytecode_node { struct lttng_ust_filter_bytecode bc; }; +/* + * Filter return value masks. + */ +enum lttng_filter_ret { + LTTNG_FILTER_DISCARD = 0, + LTTNG_FILTER_RECORD_FLAG = (1ULL << 0), + /* Other bits are kept for future use. */ +}; + struct lttng_bytecode_runtime { /* Associated bytecode */ struct lttng_ust_filter_bytecode_node *bc; - int (*filter)(void *filter_data, const char *filter_stack_data); + uint64_t (*filter)(void *filter_data, const char *filter_stack_data); int link_failed; struct cds_list_head node; /* list of bytecode runtime in event */ };