Clean-up: sessiond: return an lttng_error_code from list_triggers
[lttng-tools.git] / src / bin / lttng-sessiond / ust-registry.h
index 0b52cc1e1c9541c7743496b7ce4c87f16fe7af2d..a25cdc70de01f7070069fccf876273d8a814cbfc 100644 (file)
@@ -1,18 +1,8 @@
 /*
- * Copyright (C) 2013 David Goulet <dgoulet@efficios.com>
+ * Copyright (C) 2013 David Goulet <dgoulet@efficios.com>
  *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License, version 2 only, as
- * published by the Free Software Foundation.
+ * SPDX-License-Identifier: GPL-2.0-only
  *
- * This program 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 General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 51
- * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #ifndef LTTNG_UST_REGISTRY_H
@@ -142,7 +132,7 @@ struct ust_registry_channel {
        uint64_t consumer_key;
        /* Id set when replying to a register channel. */
        uint32_t chan_id;
-       enum ustctl_channel_header header_type;
+       enum lttng_ust_ctl_channel_header header_type;
 
        /*
         * Flag for this channel if the metadata was dumped once during
@@ -166,7 +156,7 @@ struct ust_registry_channel {
         * register channel notification from the UST tracer.
         */
        size_t nr_ctx_fields;
-       struct ustctl_field *ctx_fields;
+       struct lttng_ust_ctl_field *ctx_fields;
        struct lttng_ht_node_u64 node;
        /* For delayed reclaim */
        struct rcu_head rcu_head;
@@ -182,11 +172,11 @@ struct ust_registry_event {
        int session_objd;
        int channel_objd;
        /* Name of the event returned by the tracer. */
-       char name[LTTNG_UST_SYM_NAME_LEN];
+       char name[LTTNG_UST_ABI_SYM_NAME_LEN];
        char *signature;
        int loglevel_value;
        size_t nr_fields;
-       struct ustctl_field *fields;
+       struct lttng_ust_ctl_field *fields;
        char *model_emf_uri;
        /*
         * Flag for this channel if the metadata was dumped once during
@@ -201,8 +191,8 @@ struct ust_registry_event {
 };
 
 struct ust_registry_enum {
-       char name[LTTNG_UST_SYM_NAME_LEN];
-       struct ustctl_enum_entry *entries;
+       char name[LTTNG_UST_ABI_SYM_NAME_LEN];
+       struct lttng_ust_ctl_enum_entry *entries;
        size_t nr_entries;
        uint64_t id;    /* enum id in session */
        /* Enumeration node in session hash table. */
@@ -302,7 +292,7 @@ void ust_registry_session_destroy(struct ust_registry_session *session);
 
 int ust_registry_create_event(struct ust_registry_session *session,
                uint64_t chan_key, int session_objd, int channel_objd, char *name,
-               char *sig, size_t nr_fields, struct ustctl_field *fields,
+               char *sig, size_t nr_fields, struct lttng_ust_ctl_field *fields,
                int loglevel_value, char *model_emf_uri, int buffer_type,
                uint32_t *event_id_p, struct ust_app *app);
 struct ust_registry_event *ust_registry_find_event(
@@ -320,7 +310,7 @@ int ust_metadata_event_statedump(struct ust_registry_session *session,
                struct ust_registry_event *event);
 int ust_registry_create_or_find_enum(struct ust_registry_session *session,
                int session_objd, char *name,
-               struct ustctl_enum_entry *entries, size_t nr_entries,
+               struct lttng_ust_ctl_enum_entry *entries, size_t nr_entries,
                uint64_t *enum_id);
 struct ust_registry_enum *
        ust_registry_lookup_enum_by_id(struct ust_registry_session *session,
@@ -375,7 +365,7 @@ void ust_registry_session_destroy(struct ust_registry_session *session)
 static inline
 int ust_registry_create_event(struct ust_registry_session *session,
                uint64_t chan_key, int session_objd, int channel_objd, char *name,
-               char *sig, size_t nr_fields, struct ustctl_field *fields,
+               char *sig, size_t nr_fields, struct lttng_ust_ctl_field *fields,
                int loglevel_value, char *model_emf_uri, int buffer_type,
                uint32_t *event_id_p)
 {
@@ -415,7 +405,7 @@ int ust_metadata_event_statedump(struct ust_registry_session *session,
 static inline
 int ust_registry_create_or_find_enum(struct ust_registry_session *session,
                int session_objd, char *name,
-               struct ustctl_enum_entry *entries, size_t nr_entries,
+               struct lttng_ust_ctl_enum_entry *entries, size_t nr_entries,
                uint64_t *enum_id)
 {
        return 0;
This page took 0.024401 seconds and 4 git commands to generate.