X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;ds=sidebyside;f=lttng-abi.h;h=994d2805a142a1f7269a744ab3b6ceaf3144f282;hb=f6da044fcd41afe52612b72376672912b2118ce4;hp=ab54cf8dc50ec06b6ca5a504ff173bdfeb6d8bc0;hpb=b3699d90c5a746caeade87f86c371d2ed195147c;p=lttng-modules.git diff --git a/lttng-abi.h b/lttng-abi.h index ab54cf8d..994d2805 100644 --- a/lttng-abi.h +++ b/lttng-abi.h @@ -228,6 +228,10 @@ struct lttng_kernel_filter_bytecode { #define LTTNG_RING_BUFFER_GET_STREAM_ID _IOR(0xF6, 0x25, uint64_t) /* returns the current timestamp */ #define LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP _IOR(0xF6, 0x26, uint64_t) +/* returns the packet sequence number */ +#define LTTNG_RING_BUFFER_GET_SEQ_NUM _IOR(0xF6, 0x27, uint64_t) +/* returns the stream instance id */ +#define LTTNG_RING_BUFFER_INSTANCE_ID _IOR(0xF6, 0x28, uint64_t) #ifdef CONFIG_COMPAT /* returns the timestamp begin of the current sub-buffer */ @@ -251,6 +255,12 @@ struct lttng_kernel_filter_bytecode { /* returns the current timestamp */ #define LTTNG_RING_BUFFER_COMPAT_GET_CURRENT_TIMESTAMP \ LTTNG_RING_BUFFER_GET_CURRENT_TIMESTAMP +/* returns the packet sequence number */ +#define LTTNG_RING_BUFFER_COMPAT_GET_SEQ_NUM \ + LTTNG_RING_BUFFER_GET_SEQ_NUM +/* returns the stream instance id */ +#define LTTNG_RING_BUFFER_COMPAT_INSTANCE_ID \ + LTTNG_RING_BUFFER_INSTANCE_ID #endif /* CONFIG_COMPAT */ #endif /* _LTTNG_ABI_H */