lttng-sessiond: do not call ustctl_register_done()
[lttng-tools.git] / lttng-sessiond / ust-app.h
index 8cc049aefb9b12ad4c9b0146a8a739120823337d..071ad0d90d0189c93ebfc3427a256cf820cd5e8d 100644 (file)
@@ -119,6 +119,11 @@ struct ust_app {
 #ifdef HAVE_LIBLTTNG_UST_CTL
 
 int ust_app_register(struct ust_register_msg *msg, int sock);
+static inline
+int ust_app_register_done(int sock)
+{
+       return ustctl_register_done(sock);
+}
 void ust_app_unregister(int sock);
 unsigned long ust_app_list_count(void);
 int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app);
@@ -195,6 +200,11 @@ int ust_app_register(struct ust_register_msg *msg, int sock)
        return -ENOSYS;
 }
 static inline
+int ust_app_register_done(int sock)
+{
+       return -ENOSYS;
+}
+static inline
 void ust_app_unregister(int sock)
 {
 }
This page took 0.022979 seconds and 4 git commands to generate.