X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Fcondition%2Fsession-consumed-size.h;h=4d52cb68936bae93513d4ed98879e9aa36834481;hp=1d2ba05ba22ccdaa2260c8b19e21ed0f2f450ea3;hb=HEAD;hpb=cc02b9d4f1074b3e02cca2c963933ca829049711 diff --git a/include/lttng/condition/session-consumed-size.h b/include/lttng/condition/session-consumed-size.h index 1d2ba05ba..98284c748 100644 --- a/include/lttng/condition/session-consumed-size.h +++ b/include/lttng/condition/session-consumed-size.h @@ -1,27 +1,18 @@ /* - * 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_CONDITION_SESSION_CONSUMED_SIZE_H #define LTTNG_CONDITION_SESSION_CONSUMED_SIZE_H -#include #include +#include +#include + #include -#include #ifdef __cplusplus extern "C" { @@ -53,8 +44,7 @@ extern "C" { * Returns a new condition on success, NULL on failure. This condition must be * destroyed using lttng_condition_destroy(). */ -extern struct lttng_condition * -lttng_condition_session_consumed_size_create(void); +LTTNG_EXPORT extern struct lttng_condition *lttng_condition_session_consumed_size_create(void); /* * Get the threshold of a session consumed size condition. @@ -67,10 +57,9 @@ lttng_condition_session_consumed_size_create(void); * LTTNG_CONDITION_STATUS_UNSET if a threshold, expressed as an absolute size in * bytes, was not set prior to this call. */ -extern enum lttng_condition_status -lttng_condition_session_consumed_size_get_threshold( - const struct lttng_condition *condition, - uint64_t *consumed_threshold_bytes); +LTTNG_EXPORT extern enum lttng_condition_status +lttng_condition_session_consumed_size_get_threshold(const struct lttng_condition *condition, + uint64_t *consumed_threshold_bytes); /* * Set the threshold of a session consumed size usage condition. @@ -80,10 +69,9 @@ lttng_condition_session_consumed_size_get_threshold( * Returns LTTNG_CONDITION_STATUS_OK on success, LTTNG_CONDITION_STATUS_INVALID * if invalid parameters are passed. */ -extern enum lttng_condition_status -lttng_condition_session_consumed_size_set_threshold( - struct lttng_condition *condition, - uint64_t consumed_threshold_bytes); +LTTNG_EXPORT extern enum lttng_condition_status +lttng_condition_session_consumed_size_set_threshold(struct lttng_condition *condition, + uint64_t consumed_threshold_bytes); /* * Get the session name property of a session consumed size condition. @@ -97,10 +85,9 @@ lttng_condition_session_consumed_size_set_threshold( * parameter is passed, or LTTNG_CONDITION_STATUS_UNSET if a session name * was not set prior to this call. */ -extern enum lttng_condition_status -lttng_condition_session_consumed_size_get_session_name( - const struct lttng_condition *condition, - const char **session_name); +LTTNG_EXPORT extern enum lttng_condition_status +lttng_condition_session_consumed_size_get_session_name(const struct lttng_condition *condition, + const char **session_name); /* * Set the session name property of a session consumed size condition. @@ -110,10 +97,9 @@ lttng_condition_session_consumed_size_get_session_name( * Returns LTTNG_CONDITION_STATUS_OK on success, LTTNG_CONDITION_STATUS_INVALID * if invalid parameters are passed. */ -extern enum lttng_condition_status -lttng_condition_session_consumed_size_set_session_name( - struct lttng_condition *condition, - const char *session_name); +LTTNG_EXPORT extern enum lttng_condition_status +lttng_condition_session_consumed_size_set_session_name(struct lttng_condition *condition, + const char *session_name); /** * lttng_evaluation_session_consumed_size is specialised lttng_evaluations @@ -127,10 +113,9 @@ lttng_condition_session_consumed_size_set_session_name( * Returns LTTNG_EVALUATION_STATUS_OK on success and a threshold expressed in * bytes, or LTTNG_EVALUATION_STATUS_INVALID if an invalid parameter is passed. */ -extern enum lttng_evaluation_status -lttng_evaluation_session_consumed_size_get_consumed_size( - const struct lttng_evaluation *evaluation, - uint64_t *session_consumed); +LTTNG_EXPORT extern enum lttng_evaluation_status +lttng_evaluation_session_consumed_size_get_consumed_size(const struct lttng_evaluation *evaluation, + uint64_t *session_consumed); #ifdef __cplusplus }