X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fbuffer-view.c;h=4bdb1eb7d75d48be514689200954d69c44a7809b;hp=8ff1539919a8f7140a7a2ac25780a6fcf323e5ea;hb=65e663fa0c098f8f8ddd0f0f3d91dbd25d1daa4d;hpb=01dc0eed91e5c7db3f12beda894cb3d9cc7a4fa1 diff --git a/src/common/buffer-view.c b/src/common/buffer-view.c index 8ff153991..4bdb1eb7d 100644 --- a/src/common/buffer-view.c +++ b/src/common/buffer-view.c @@ -1,26 +1,24 @@ /* - * Copyright (C) 2017 - Jérémie Galarneau + * Copyright (C) 2017 Jérémie Galarneau * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License, version 2.1 only, - * as published by the Free Software Foundation. + * SPDX-License-Identifier: LGPL-2.1-only * - * This program 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 program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include -#include #include #include +LTTNG_HIDDEN +struct lttng_buffer_view lttng_buffer_view_init( + const char *src, size_t offset, ptrdiff_t len) +{ + struct lttng_buffer_view view = { .data = src + offset, .size = len }; + return view; +} + +LTTNG_HIDDEN struct lttng_buffer_view lttng_buffer_view_from_view( const struct lttng_buffer_view *src, size_t offset, ptrdiff_t len) @@ -45,6 +43,7 @@ end: return view; } +LTTNG_HIDDEN struct lttng_buffer_view lttng_buffer_view_from_dynamic_buffer( const struct lttng_dynamic_buffer *src, size_t offset, ptrdiff_t len)