lib: compile liblttng-ctl as C++
[lttng-tools.git] / include / lttng / condition / session-consumed-size.h
index 4079e8c0b8459baa8d9f8ba32bd1073c8514966f..4d52cb68936bae93513d4ed98879e9aa36834481 100644 (file)
@@ -1,18 +1,8 @@
 /*
- * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
+ * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
- * 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
 
 #include <lttng/condition/evaluation.h>
 #include <lttng/condition/condition.h>
+#include <lttng/lttng-export.h>
 #include <stdint.h>
-#include <lttng/domain.h>
 
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-struct lttng_condition;
-struct lttng_evaluation;
-
 /**
  * Session consumed size conditions allow an action to be taken whenever a
  * session's produced data size crosses a set threshold.
@@ -56,7 +43,7 @@ struct lttng_evaluation;
  * Returns a new condition on success, NULL on failure. This condition must be
  * destroyed using lttng_condition_destroy().
  */
-extern struct lttng_condition *
+LTTNG_EXPORT extern struct lttng_condition *
 lttng_condition_session_consumed_size_create(void);
 
 /*
@@ -70,7 +57,7 @@ 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_EXPORT extern enum lttng_condition_status
 lttng_condition_session_consumed_size_get_threshold(
                const struct lttng_condition *condition,
                uint64_t *consumed_threshold_bytes);
@@ -83,7 +70,7 @@ 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_EXPORT extern enum lttng_condition_status
 lttng_condition_session_consumed_size_set_threshold(
                struct lttng_condition *condition,
                uint64_t consumed_threshold_bytes);
@@ -100,7 +87,7 @@ 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_EXPORT extern enum lttng_condition_status
 lttng_condition_session_consumed_size_get_session_name(
                const struct lttng_condition *condition,
                const char **session_name);
@@ -113,7 +100,7 @@ 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_EXPORT extern enum lttng_condition_status
 lttng_condition_session_consumed_size_set_session_name(
                struct lttng_condition *condition,
                const char *session_name);
@@ -127,10 +114,10 @@ lttng_condition_session_consumed_size_set_session_name(
 /*
  * Get the session consumed property of a session consumed size evaluation.
  *
- * Returns LTTNG_CONDITION_STATUS_OK on success and a threshold expressed in
- * bytes, or LTTNG_CONDITION_STATUS_INVALID if an invalid parameter is passed.
+ * 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_EXPORT extern enum lttng_evaluation_status
 lttng_evaluation_session_consumed_size_get_consumed_size(
                const struct lttng_evaluation *evaluation,
                uint64_t *session_consumed);
This page took 0.025618 seconds and 4 git commands to generate.