X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=lttng-context-interruptible.c;h=c07cba18f984ce30cc5e23c57fbb2928269940b1;hb=ceabb767180e064629b5a9ab4ed14449da864763;hp=8966fa95bf7e70b56d41e5ee490230f297f5e678;hpb=241ae9a8fb62c3ce467d244e280062c24e73eb7a;p=lttng-modules.git diff --git a/lttng-context-interruptible.c b/lttng-context-interruptible.c index 8966fa95..c07cba18 100644 --- a/lttng-context-interruptible.c +++ b/lttng-context-interruptible.c @@ -1,23 +1,10 @@ -/* +/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only) + * * lttng-context-interruptible.c * * LTTng interruptible context. * * Copyright (C) 2009-2015 Mathieu Desnoyers - * - * 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; only - * 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 */ #include @@ -78,12 +65,12 @@ int lttng_add_interruptible_to_ctx(struct lttng_ctx **ctx) } field->event_field.name = "interruptible"; field->event_field.type.atype = atype_integer; - field->event_field.type.u.basic.integer.size = sizeof(int8_t) * CHAR_BIT; - field->event_field.type.u.basic.integer.alignment = lttng_alignof(int8_t) * CHAR_BIT; - field->event_field.type.u.basic.integer.signedness = lttng_is_signed_type(int8_t); - field->event_field.type.u.basic.integer.reverse_byte_order = 0; - field->event_field.type.u.basic.integer.base = 10; - field->event_field.type.u.basic.integer.encoding = lttng_encode_none; + field->event_field.type.u.integer.size = sizeof(int8_t) * CHAR_BIT; + field->event_field.type.u.integer.alignment = lttng_alignof(int8_t) * CHAR_BIT; + field->event_field.type.u.integer.signedness = lttng_is_signed_type(int8_t); + field->event_field.type.u.integer.reverse_byte_order = 0; + field->event_field.type.u.integer.base = 10; + field->event_field.type.u.integer.encoding = lttng_encode_none; field->get_size = interruptible_get_size; field->record = interruptible_record; field->get_value = interruptible_get_value;