Fix: lttng-ctl: erroneous uses of LTTNG_PACKED
[lttng-tools.git] / include / lttng / snapshot-internal.h
index a14564b3b03c4bc9a1ccd195f7fbce336a0b9f12..78c741349c750a0c1ae81a61b7aa4764fec86698 100644 (file)
@@ -1,18 +1,8 @@
 /*
- * Copyright (C) 2013 David Goulet <dgoulet@efficios.com>
+ * Copyright (C) 2013 David Goulet <dgoulet@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_SNAPSHOT_INTERNAL_ABI_H
@@ -20,6 +10,8 @@
 
 #include <limits.h>
 #include <stdint.h>
+#include <lttng/constant.h>
+#include <common/macros.h>
 
 /*
  * Object used for the snapshot API. This is opaque to the public library.
@@ -37,12 +29,12 @@ struct lttng_snapshot_output {
         */
        uint64_t max_size;
        /* Name of the output so it can be recognized easily when listing them. */
-       char name[NAME_MAX];
+       char name[LTTNG_NAME_MAX];
        /* Destination of the output. See lttng(1) for URL format. */
        char ctrl_url[PATH_MAX];
        /* Destination of the output. See lttng(1) for URL format. */
        char data_url[PATH_MAX];
-};
+} LTTNG_PACKED;
 
 /*
  * Snapshot output list object opaque to the user.
@@ -59,7 +51,7 @@ struct lttng_snapshot_output_list {
        size_t count;
 
        /*
-        * Containes snapshot output object.
+        * Contains snapshot output object.
         */
        struct lttng_snapshot_output *array;
 };
This page took 0.023886 seconds and 4 git commands to generate.