Fix: validate whether event notifiers are supported by UST application
[lttng-tools.git] / src / bin / lttng-sessiond / ust-app.h
index e0321cdc486a368b173860932e6ef539296be678..2b82aeec098c068b9ccc07e1e385eea511c42cf6 100644 (file)
@@ -404,6 +404,9 @@ int ust_app_supported(void)
        return 1;
 }
 
+bool ust_app_supports_notifiers(const struct ust_app *app);
+bool ust_app_supports_counters(const struct ust_app *app);
+
 #else /* HAVE_LIBLTTNG_UST_CTL */
 
 static inline
@@ -596,6 +599,16 @@ int ust_app_supported(void)
        return 0;
 }
 static inline
+bool ust_app_supports_notifiers(const struct ust_app *app)
+{
+       return false;
+}
+static inline
+bool ust_app_supports_counters(const struct ust_app *app)
+{
+       return false;
+}
+static inline
 struct ust_app *ust_app_find_by_sock(int sock)
 {
        return NULL;
This page took 0.022927 seconds and 4 git commands to generate.