X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Fcompile%2Ftest-app-ctx%2Fhello.c;h=6b1a6bd30251058abc2c20773c39e8cd1b9f2b87;hb=b7c3885540ac3ae1a5f1e8f93e9347c28db9fdcc;hp=20df12db0e80bb4b0d2cc001d7f8e04c4e6de180;hpb=daacdbfc04fe07ecff0a0d1878b4f48d38912c78;p=lttng-ust.git diff --git a/tests/compile/test-app-ctx/hello.c b/tests/compile/test-app-ctx/hello.c index 20df12db..6b1a6bd3 100644 --- a/tests/compile/test-app-ctx/hello.c +++ b/tests/compile/test-app-ctx/hello.c @@ -28,9 +28,9 @@ struct mmsghdr; #define TRACEPOINT_DEFINE #include "ust_tests_hello.h" -/* Internal header. */ #include -#include +#include +/* Internal header. */ #include static __thread unsigned int test_count; @@ -104,13 +104,13 @@ size_t test_get_size(struct lttng_ust_ctx_field *field, size_t offset) static void test_record(struct lttng_ust_ctx_field *field, struct lttng_ust_lib_ring_buffer_ctx *ctx, - struct lttng_channel *chan) + struct lttng_ust_channel_buffer *lttng_chan_buf) { int sel = test_count % _NR_LTTNG_UST_DYNAMIC_TYPES; char sel_char = (char) sel; lib_ring_buffer_align_ctx(ctx, lttng_alignof(char)); - chan->ops->event_write(ctx, &sel_char, sizeof(sel_char)); + lttng_chan_buf->ops->event_write(ctx, &sel_char, sizeof(sel_char)); switch (sel) { case LTTNG_UST_DYNAMIC_TYPE_NONE: break; @@ -119,7 +119,7 @@ void test_record(struct lttng_ust_ctx_field *field, int8_t v = -8; lib_ring_buffer_align_ctx(ctx, lttng_alignof(v)); - chan->ops->event_write(ctx, &v, sizeof(v)); + lttng_chan_buf->ops->event_write(ctx, &v, sizeof(v)); break; } case LTTNG_UST_DYNAMIC_TYPE_S16: @@ -127,7 +127,7 @@ void test_record(struct lttng_ust_ctx_field *field, int16_t v = -16; lib_ring_buffer_align_ctx(ctx, lttng_alignof(v)); - chan->ops->event_write(ctx, &v, sizeof(v)); + lttng_chan_buf->ops->event_write(ctx, &v, sizeof(v)); break; } case LTTNG_UST_DYNAMIC_TYPE_S32: @@ -135,7 +135,7 @@ void test_record(struct lttng_ust_ctx_field *field, int32_t v = -32; lib_ring_buffer_align_ctx(ctx, lttng_alignof(v)); - chan->ops->event_write(ctx, &v, sizeof(v)); + lttng_chan_buf->ops->event_write(ctx, &v, sizeof(v)); break; } case LTTNG_UST_DYNAMIC_TYPE_S64: @@ -143,7 +143,7 @@ void test_record(struct lttng_ust_ctx_field *field, int64_t v = -64; lib_ring_buffer_align_ctx(ctx, lttng_alignof(v)); - chan->ops->event_write(ctx, &v, sizeof(v)); + lttng_chan_buf->ops->event_write(ctx, &v, sizeof(v)); break; } case LTTNG_UST_DYNAMIC_TYPE_U8: @@ -151,7 +151,7 @@ void test_record(struct lttng_ust_ctx_field *field, uint8_t v = 8; lib_ring_buffer_align_ctx(ctx, lttng_alignof(v)); - chan->ops->event_write(ctx, &v, sizeof(v)); + lttng_chan_buf->ops->event_write(ctx, &v, sizeof(v)); break; } case LTTNG_UST_DYNAMIC_TYPE_U16: @@ -159,7 +159,7 @@ void test_record(struct lttng_ust_ctx_field *field, uint16_t v = 16; lib_ring_buffer_align_ctx(ctx, lttng_alignof(v)); - chan->ops->event_write(ctx, &v, sizeof(v)); + lttng_chan_buf->ops->event_write(ctx, &v, sizeof(v)); break; } case LTTNG_UST_DYNAMIC_TYPE_U32: @@ -167,7 +167,7 @@ void test_record(struct lttng_ust_ctx_field *field, uint32_t v = 32; lib_ring_buffer_align_ctx(ctx, lttng_alignof(v)); - chan->ops->event_write(ctx, &v, sizeof(v)); + lttng_chan_buf->ops->event_write(ctx, &v, sizeof(v)); break; } case LTTNG_UST_DYNAMIC_TYPE_U64: @@ -175,7 +175,7 @@ void test_record(struct lttng_ust_ctx_field *field, uint64_t v = 64; lib_ring_buffer_align_ctx(ctx, lttng_alignof(v)); - chan->ops->event_write(ctx, &v, sizeof(v)); + lttng_chan_buf->ops->event_write(ctx, &v, sizeof(v)); break; } case LTTNG_UST_DYNAMIC_TYPE_FLOAT: @@ -183,7 +183,7 @@ void test_record(struct lttng_ust_ctx_field *field, float f = 22322.0; lib_ring_buffer_align_ctx(ctx, lttng_alignof(f)); - chan->ops->event_write(ctx, &f, sizeof(f)); + lttng_chan_buf->ops->event_write(ctx, &f, sizeof(f)); break; } case LTTNG_UST_DYNAMIC_TYPE_DOUBLE: @@ -191,13 +191,13 @@ void test_record(struct lttng_ust_ctx_field *field, double d = 2.0; lib_ring_buffer_align_ctx(ctx, lttng_alignof(d)); - chan->ops->event_write(ctx, &d, sizeof(d)); + lttng_chan_buf->ops->event_write(ctx, &d, sizeof(d)); break; } case LTTNG_UST_DYNAMIC_TYPE_STRING: { const char *str = "teststr"; - chan->ops->event_write(ctx, str, strlen(str) + 1); + lttng_chan_buf->ops->event_write(ctx, str, strlen(str) + 1); break; } default: