Fix: sessiond: use system LTTng-UST headers when available
[lttng-tools.git] / src / bin / lttng-sessiond / ust-app.h
index 89d97309f7590b882587b6ddeaa6c9fc99478f46..4c8c3cc62f310be594444d33492fe5634c4103da 100644 (file)
@@ -363,6 +363,8 @@ int ust_app_regenerate_statedump_all(struct ltt_ust_session *usess);
 enum lttng_error_code ust_app_rotate_session(struct ltt_session *session);
 enum lttng_error_code ust_app_create_channel_subdirectories(
                const struct ltt_ust_session *session);
+int ust_app_release_object(struct ust_app *app,
+               struct lttng_ust_object_data *data);
 
 static inline
 int ust_app_supported(void)
@@ -536,7 +538,7 @@ void ust_app_destroy(struct ust_app *app)
 }
 static inline
 enum lttng_error_code ust_app_snapshot_record(struct ltt_ust_session *usess,
-               struct consumer_output *output, int wait, uint64_t max_stream_size)
+               const struct consumer_output *output, int wait, uint64_t max_stream_size)
 {
        return 0;
 }
@@ -563,7 +565,7 @@ struct ust_app *ust_app_find_by_pid(pid_t pid)
 }
 static inline
 uint64_t ust_app_get_size_one_more_packet_per_stream(
-               struct ltt_ust_session *usess, uint64_t cur_nr_packets) {
+               const struct ltt_ust_session *usess, uint64_t cur_nr_packets) {
        return 0;
 }
 static inline
@@ -603,6 +605,12 @@ enum lttng_error_code ust_app_create_channel_subdirectories(
        return 0;
 }
 
+static inline
+int ust_app_release_object(struct ust_app *app, struct lttng_ust_object_data *data)
+{
+       return 0;
+}
+
 #endif /* HAVE_LIBLTTNG_UST_CTL */
 
 #endif /* _LTT_UST_APP_H */
This page took 0.02413 seconds and 5 git commands to generate.