X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=libmsgpack%2Fmsgpack.h;h=f75be91a779b5d825bf2f3c7b2f55c48b1b65011;hb=ef6ae9f971eea6f5bea87ca7cda43fa16f1c0b5f;hp=e5c011ea877da7a931885d7bd2dd3bd2abb7d503;hpb=49705576d8779e3fa2b3efc4294bc03261f76935;p=lttng-ust.git diff --git a/libmsgpack/msgpack.h b/libmsgpack/msgpack.h index e5c011ea..f75be91a 100644 --- a/libmsgpack/msgpack.h +++ b/libmsgpack/msgpack.h @@ -1,26 +1,12 @@ -#ifndef _LTTNG_UST_MSGPACK_H -#define _LTTNG_UST_MSGPACK_H - /* - * msgpack.h + * SPDX-License-Identifier: LGPL-2.1-only * * Copyright (C) 2020 Francis Deslauriers - * - * 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 */ +#ifndef _LTTNG_UST_MSGPACK_H +#define _LTTNG_UST_MSGPACK_H + #include #ifdef __KERNEL__ #include @@ -36,26 +22,49 @@ struct lttng_msgpack_writer { uint8_t map_nesting; }; +__attribute__((visibility("hidden"))) void lttng_msgpack_writer_init( struct lttng_msgpack_writer *writer, uint8_t *buffer, size_t size); +__attribute__((visibility("hidden"))) void lttng_msgpack_writer_fini(struct lttng_msgpack_writer *writer); +__attribute__((visibility("hidden"))) int lttng_msgpack_write_nil(struct lttng_msgpack_writer *writer); + +__attribute__((visibility("hidden"))) int lttng_msgpack_write_true(struct lttng_msgpack_writer *writer); + +__attribute__((visibility("hidden"))) int lttng_msgpack_write_false(struct lttng_msgpack_writer *writer); + +__attribute__((visibility("hidden"))) int lttng_msgpack_write_unsigned_integer( struct lttng_msgpack_writer *writer, uint64_t value); + +__attribute__((visibility("hidden"))) int lttng_msgpack_write_signed_integer( struct lttng_msgpack_writer *writer, int64_t value); + +__attribute__((visibility("hidden"))) int lttng_msgpack_write_double(struct lttng_msgpack_writer *writer, double value); + +__attribute__((visibility("hidden"))) int lttng_msgpack_write_str(struct lttng_msgpack_writer *writer, const char *value); + +__attribute__((visibility("hidden"))) int lttng_msgpack_begin_map(struct lttng_msgpack_writer *writer, size_t count); + +__attribute__((visibility("hidden"))) int lttng_msgpack_end_map(struct lttng_msgpack_writer *writer); + +__attribute__((visibility("hidden"))) int lttng_msgpack_begin_array( struct lttng_msgpack_writer *writer, size_t count); + +__attribute__((visibility("hidden"))) int lttng_msgpack_end_array(struct lttng_msgpack_writer *writer); #endif /* _LTTNG_UST_MSGPACK_H */