X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Fcompile%2Ftest-app-ctx%2Fhello.c;h=20df12db0e80bb4b0d2cc001d7f8e04c4e6de180;hb=daacdbfc04fe07ecff0a0d1878b4f48d38912c78;hp=3d026095039091c6610e00557303c3ee3c9c78b2;hpb=ae4b659d95f8dab9f2aa4b890d6937d7d5375f07;p=lttng-ust.git diff --git a/tests/compile/test-app-ctx/hello.c b/tests/compile/test-app-ctx/hello.c index 3d026095..20df12db 100644 --- a/tests/compile/test-app-ctx/hello.c +++ b/tests/compile/test-app-ctx/hello.c @@ -41,7 +41,7 @@ void test_inc_count(void) } static -size_t test_get_size(struct lttng_ctx_field *field, size_t offset) +size_t test_get_size(struct lttng_ust_ctx_field *field, size_t offset) { int sel = test_count % _NR_LTTNG_UST_DYNAMIC_TYPES; size_t size = 0; @@ -102,7 +102,7 @@ size_t test_get_size(struct lttng_ctx_field *field, size_t offset) } static -void test_record(struct lttng_ctx_field *field, +void test_record(struct lttng_ust_ctx_field *field, struct lttng_ust_lib_ring_buffer_ctx *ctx, struct lttng_channel *chan) { @@ -206,8 +206,8 @@ void test_record(struct lttng_ctx_field *field, } static -void test_get_value(struct lttng_ctx_field *field, - struct lttng_ctx_value *value) +void test_get_value(struct lttng_ust_ctx_field *field, + struct lttng_ust_ctx_value *value) { int sel = test_count % _NR_LTTNG_UST_DYNAMIC_TYPES; @@ -254,6 +254,7 @@ void test_get_value(struct lttng_ctx_field *field, } struct lttng_ust_context_provider myprovider = { + .struct_size = sizeof(struct lttng_ust_context_provider), .name = "$app.myprovider", .get_size = test_get_size, .record = test_record,