X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng-share.h;h=4e079d241f5392d05aee65acdfe5ca3375fd0b07;hp=7f82cf6a59caf226b8a12ef3313894c74747e250;hb=5eb91c9837a7b379a74e99358f0f9fb10011ef74;hpb=82a3637f639486c07ff937ab03e1e9532379d26a diff --git a/include/lttng-share.h b/include/lttng-share.h index 7f82cf6a5..4e079d241 100644 --- a/include/lttng-share.h +++ b/include/lttng-share.h @@ -19,38 +19,54 @@ #ifndef _LTTNG_SHARE_H #define _LTTNG_SHARE_H -#include -#include - -typedef uint32_t u32; -typedef uint64_t u64; - -typedef __s64 s64; - -#define LTTNG_RUNDIR "/var/run/lttng" - /* Default channel attributes */ -#define DEFAULT_CHANNEL_NAME "channel0" -#define DEFAULT_CHANNEL_OVERWRITE 0 /* usec */ +#define DEFAULT_CHANNEL_NAME "channel0" +#define DEFAULT_CHANNEL_OVERWRITE 0 /* usec */ /* DEFAULT_CHANNEL_SUBBUF_SIZE must always be a power of 2 */ -#define DEFAULT_CHANNEL_SUBBUF_SIZE 4096 /* bytes */ +#define DEFAULT_CHANNEL_SUBBUF_SIZE 4096 /* bytes */ /* DEFAULT_CHANNEL_SUBBUF_NUM must always be a power of 2 */ -#define DEFAULT_CHANNEL_SUBBUF_NUM 8 -#define DEFAULT_CHANNEL_SWITCH_TIMER 0 /* usec */ -#define DEFAULT_CHANNEL_READ_TIMER 200 /* usec */ +#define DEFAULT_CHANNEL_SUBBUF_NUM 8 +#define DEFAULT_CHANNEL_SWITCH_TIMER 0 /* usec */ +#define DEFAULT_CHANNEL_READ_TIMER 200 /* usec */ +#define DEFAULT_CHANNEL_OUTPUT LTTNG_EVENT_MMAP + +#define DEFAULT_METADATA_SUBBUF_SIZE 4096 +#define DEFAULT_METADATA_SUBBUF_NUM 2 + +/* Kernel has different defaults */ + +/* DEFAULT_KERNEL_CHANNEL_SUBBUF_SIZE must always be a power of 2 */ +#define DEFAULT_KERNEL_CHANNEL_SUBBUF_SIZE 262144 /* bytes */ +/* DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM must always be a power of 2 */ +#define DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM 4 /* See lttng-kernel.h enum lttng_kernel_output for channel output */ #define DEFAULT_KERNEL_CHANNEL_OUTPUT LTTNG_EVENT_SPLICE -/* == NOT IMPLEMENTED == -#define DEFAULT_UST_CHANNEL_OUTPUT LTTNG_UST_MMAP -*/ +/* + * Takes a pointer x and transform it so we can use it to access members + * without a function call. Here an example: + * + * #define GET_SIZE(x) LTTNG_REF(x)->size + * + * struct { int size; } s; + * + * printf("size : %d\n", GET_SIZE(&s)); + * + * For this example we can't use something like this for compatibility purpose + * since this will fail: + * + * #define GET_SIZE(x) x->size; + * + * This is mostly use for the compatibility layer of lttng-tools. See + * poll/epoll for a good real example. Since x can be on the stack or allocated + * memory using malloc(), we must use generic accessors for compat in order to + * *not* use a function to access members. + */ +#define LTTNG_REF(x) ((typeof(*x) *)(x)) /* - * lttng user-space instrumentation type + * Memory allocation zeroed */ -enum lttng_ust_instrumentation { - LTTNG_UST_TRACEPOINT, - LTTNG_UST_MARKER, -}; +#define zmalloc(x) calloc(1, x) #endif /* _LTTNG_SHARE_H */