X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Fcompile%2Ftest-app-ctx%2Fhello.c;h=20df12db0e80bb4b0d2cc001d7f8e04c4e6de180;hb=daacdbfc04fe07ecff0a0d1878b4f48d38912c78;hp=e9e45ec7c51db46aae588276d14085322136ac06;hpb=dbe6ade0ba17270b2cb119b9961bbb7e48ce4733;p=lttng-ust.git diff --git a/tests/compile/test-app-ctx/hello.c b/tests/compile/test-app-ctx/hello.c index e9e45ec7..20df12db 100644 --- a/tests/compile/test-app-ctx/hello.c +++ b/tests/compile/test-app-ctx/hello.c @@ -1,20 +1,8 @@ /* - * Copyright (C) 2009 Pierre-Marc Fournier - * Copyright (C) 2011 Mathieu Desnoyers + * SPDX-License-Identifier: LGPL-2.1-only * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; version 2.1 of - * the License. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * Copyright (C) 2009 Pierre-Marc Fournier + * Copyright (C) 2011 Mathieu Desnoyers */ #include @@ -43,7 +31,7 @@ struct mmsghdr; /* Internal header. */ #include #include -#include +#include static __thread unsigned int test_count; @@ -53,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; @@ -114,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) { @@ -218,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; @@ -240,16 +228,16 @@ void test_get_value(struct lttng_ctx_field *field, value->u.s64 = -64; break; case LTTNG_UST_DYNAMIC_TYPE_U8: - value->u.s64 = 8; + value->u.u64 = 8; break; case LTTNG_UST_DYNAMIC_TYPE_U16: - value->u.s64 = 16; + value->u.u64 = 16; break; case LTTNG_UST_DYNAMIC_TYPE_U32: - value->u.s64 = 32; + value->u.u64 = 32; break; case LTTNG_UST_DYNAMIC_TYPE_U64: - value->u.s64 = 64; + value->u.u64 = 64; break; case LTTNG_UST_DYNAMIC_TYPE_FLOAT: value->u.d = 22322.0; @@ -266,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,