X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Faction%2Faction-internal.h;h=787e9087a01e353c664c1876575dad2867a4fa5b;hp=1ab8f9a81011999a1543fe71deaa0bc597770ea0;hb=ab5be9fa2eb5ba9600a82cd18fd3cfcbac69169a;hpb=72756a3feb2180e3744d898c0809d0c01b248e26 diff --git a/include/lttng/action/action-internal.h b/include/lttng/action/action-internal.h index 1ab8f9a81..787e9087a 100644 --- a/include/lttng/action/action-internal.h +++ b/include/lttng/action/action-internal.h @@ -1,18 +1,8 @@ /* - * Copyright (C) 2017 - Jérémie Galarneau + * Copyright (C) 2017 Jérémie Galarneau * - * This library 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 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_ACTION_INTERNAL_H @@ -21,12 +11,14 @@ #include #include #include +#include #include #include typedef bool (*action_validate_cb)(struct lttng_action *action); typedef void (*action_destroy_cb)(struct lttng_action *action); -typedef ssize_t (*action_serialize_cb)(struct lttng_action *action, char *buf); +typedef int (*action_serialize_cb)(struct lttng_action *action, + struct lttng_dynamic_buffer *buf); struct lttng_action { enum lttng_action_type type; @@ -44,10 +36,15 @@ LTTNG_HIDDEN bool lttng_action_validate(struct lttng_action *action); LTTNG_HIDDEN -ssize_t lttng_action_serialize(struct lttng_action *action, char *buf); +int lttng_action_serialize(struct lttng_action *action, + struct lttng_dynamic_buffer *buf); LTTNG_HIDDEN ssize_t lttng_action_create_from_buffer(const struct lttng_buffer_view *view, struct lttng_action **action); +LTTNG_HIDDEN +enum lttng_action_type lttng_action_get_type_const( + const struct lttng_action *action); + #endif /* LTTNG_ACTION_INTERNAL_H */