X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fbuffer-view.h;h=ecd764d7c019f1c5e5902b848676f78df93ef223;hb=55caead7396fa6d4337db7fa8c64a1036393be9f;hp=47f09b430c5be1c3b538c86d5eae20b1546a217d;hpb=b2530e4d8651a3e48e86a90765af290e2b53969d;p=lttng-tools.git diff --git a/src/common/buffer-view.h b/src/common/buffer-view.h index 47f09b430..ecd764d7c 100644 --- a/src/common/buffer-view.h +++ b/src/common/buffer-view.h @@ -13,6 +13,10 @@ #include #include +#ifdef __cplusplus +extern "C" { +#endif + struct lttng_dynamic_buffer; struct lttng_buffer_view { @@ -31,7 +35,6 @@ struct lttng_buffer_view { * Note that a buffer view never assumes the ownership of the memory it * references. */ -LTTNG_HIDDEN struct lttng_buffer_view lttng_buffer_view_init( const char *src, size_t offset, ptrdiff_t len); @@ -44,7 +47,6 @@ struct lttng_buffer_view lttng_buffer_view_init( * * @view Buffer view to validate */ -LTTNG_HIDDEN bool lttng_buffer_view_is_valid(const struct lttng_buffer_view *view); /** @@ -60,7 +62,6 @@ bool lttng_buffer_view_is_valid(const struct lttng_buffer_view *view); * Note that a buffer view never assumes the ownership of the memory it * references. */ -LTTNG_HIDDEN struct lttng_buffer_view lttng_buffer_view_from_view( const struct lttng_buffer_view *src, size_t offset, ptrdiff_t len); @@ -78,7 +79,6 @@ struct lttng_buffer_view lttng_buffer_view_from_view( * Note that a buffer view never assumes the ownership of the memory it * references. */ -LTTNG_HIDDEN struct lttng_buffer_view lttng_buffer_view_from_dynamic_buffer( const struct lttng_dynamic_buffer *src, size_t offset, ptrdiff_t len); @@ -92,9 +92,12 @@ struct lttng_buffer_view lttng_buffer_view_from_dynamic_buffer( * @len_with_null_terminator Expected length of the string, including the * NULL terminator. */ -LTTNG_HIDDEN bool lttng_buffer_view_contains_string(const struct lttng_buffer_view *buf, const char *str, size_t len_with_null_terminator); +#ifdef __cplusplus +} +#endif + #endif /* LTTNG_BUFFER_VIEW_H */