Clean-up: modernize pretty_xml.cpp
[lttng-tools.git] / include / lttng / condition / session-rotation.h
index 5ed71fa4dc9ebce1e631694aa56364833371ccc0..6e6207fb28e0d689790bc19f1301278b1c91de73 100644 (file)
@@ -1,28 +1,20 @@
 /*
- * 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_ROTATION_H
 #define LTTNG_CONDITION_SESSION_ROTATION_H
 
-#include <lttng/condition/evaluation.h>
 #include <lttng/condition/condition.h>
-#include <stdint.h>
+#include <lttng/condition/evaluation.h>
 #include <lttng/domain.h>
 #include <lttng/location.h>
+#include <lttng/lttng-export.h>
+
+#include <stdint.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -48,8 +40,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_rotation_ongoing_create(void);
+LTTNG_EXPORT extern struct lttng_condition *lttng_condition_session_rotation_ongoing_create(void);
 
 /*
  * Create a newly allocated session rotation completion condition.
@@ -63,8 +54,7 @@ lttng_condition_session_rotation_ongoing_create(void);
  * 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_rotation_completed_create(void);
+LTTNG_EXPORT extern struct lttng_condition *lttng_condition_session_rotation_completed_create(void);
 
 /*
  * Get the session name property of a session rotation condition.
@@ -78,10 +68,9 @@ lttng_condition_session_rotation_ongoing_create(void);
  * 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_rotation_get_session_name(
-               const struct lttng_condition *condition,
-               const char **session_name);
+LTTNG_EXPORT extern enum lttng_condition_status
+lttng_condition_session_rotation_get_session_name(const struct lttng_condition *condition,
+                                                 const char **session_name);
 
 /*
  * Set the session name property of a session rotation condition.
@@ -91,10 +80,9 @@ lttng_condition_session_rotation_get_session_name(
  * Returns LTTNG_CONDITION_STATUS_OK on success, LTTNG_CONDITION_STATUS_INVALID
  * if invalid paramenters are passed.
  */
-extern enum lttng_condition_status
-lttng_condition_session_rotation_set_session_name(
-               struct lttng_condition *condition,
-               const char *session_name);
+LTTNG_EXPORT extern enum lttng_condition_status
+lttng_condition_session_rotation_set_session_name(struct lttng_condition *condition,
+                                                 const char *session_name);
 
 /**
  * lttng_evaluation_session_rotation are specialised lttng_evaluations
@@ -109,9 +97,8 @@ lttng_condition_session_rotation_set_session_name(
  * rotation, or LTTNG_EVALUATION_STATUS_INVALID if an invalid parameter is
  * passed.
  */
-extern enum lttng_evaluation_status
-lttng_evaluation_session_rotation_get_id(
-               const struct lttng_evaluation *evaluation, uint64_t *id);
+LTTNG_EXPORT extern enum lttng_evaluation_status
+lttng_evaluation_session_rotation_get_id(const struct lttng_evaluation *evaluation, uint64_t *id);
 
 /*
  * Get the session rotation location property of a session rotation completed
@@ -128,10 +115,10 @@ lttng_evaluation_session_rotation_get_id(
  * LTTNG_EVALUATION_STATUS_INVALID is returned if an invalid parameter is
  * passed.
  */
-extern enum lttng_evaluation_status
+LTTNG_EXPORT extern enum lttng_evaluation_status
 lttng_evaluation_session_rotation_completed_get_location(
-               const struct lttng_evaluation *evaluation,
-               const struct lttng_trace_archive_location **location);
+       const struct lttng_evaluation *evaluation,
+       const struct lttng_trace_archive_location **location);
 
 #ifdef __cplusplus
 }
This page took 0.025443 seconds and 4 git commands to generate.