X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=liblttng-ust%2Flttng-context-time-ns.c;h=b9d07d0861adc0f4aa98257c0fe83d2eb75fac84;hb=8da9deee450bf62c6c3abb1f44f9414c0667dd6f;hp=fa85b5da6be9b6d9afa9a42a891d246945b1efab;hpb=e7bc0ef6c86ae97886cf5f8b28854cf281d4962b;p=lttng-ust.git diff --git a/liblttng-ust/lttng-context-time-ns.c b/liblttng-ust/lttng-context-time-ns.c index fa85b5da..b9d07d08 100644 --- a/liblttng-ust/lttng-context-time-ns.c +++ b/liblttng-ust/lttng-context-time-ns.c @@ -8,6 +8,7 @@ */ #define _LGPL_SOURCE +#include #include #include #include @@ -92,7 +93,7 @@ size_t time_ns_get_size(struct lttng_ust_ctx_field *field, size_t offset) { size_t size = 0; - size += lib_ring_buffer_align(offset, lttng_alignof(ino_t)); + size += lttng_ust_lib_ring_buffer_align(offset, lttng_ust_rb_alignof(ino_t)); size += sizeof(ino_t); return size; } @@ -105,8 +106,7 @@ void time_ns_record(struct lttng_ust_ctx_field *field, ino_t time_ns; time_ns = get_time_ns(); - lib_ring_buffer_align_ctx(ctx, lttng_alignof(time_ns)); - chan->ops->event_write(ctx, &time_ns, sizeof(time_ns)); + chan->ops->event_write(ctx, &time_ns, sizeof(time_ns), lttng_ust_rb_alignof(time_ns)); } static @@ -123,8 +123,8 @@ int lttng_add_time_ns_to_ctx(struct lttng_ust_ctx **ctx) int ret; type = lttng_ust_create_type_integer(sizeof(ino_t) * CHAR_BIT, - lttng_alignof(ino_t) * CHAR_BIT, - lttng_is_signed_type(ino_t), + lttng_ust_rb_alignof(ino_t) * CHAR_BIT, + lttng_ust_is_signed_type(ino_t), BYTE_ORDER, 10); if (!type) return -ENOMEM;