Rotate command
[lttng-tools.git] / tests / unit / test_ust_data.c
index 43ad3115bcd4ae6a4a52616f4b2deefb89a429ce..ac3350d796baabe6647d0971b872c3feeeff23fd 100644 (file)
@@ -63,6 +63,19 @@ static char random_string[RANDOM_STRING_LEN];
 static struct ltt_ust_session *usess;
 static struct lttng_domain dom;
 
+/*
+ * Stub to prevent an undefined reference in this test without having to link
+ * the entire tree because of a cascade of dependencies. This is not used,
+ * it is just there to prevent GCC from complaining.
+ */
+int rotate_add_channel_pending(uint64_t key, enum lttng_domain_type domain,
+               struct ltt_session *session)
+{
+       ERR("Stub called instead of the real function");
+       abort();
+       return -1;
+}
+
 /*
  * Return random string of 10 characters.
  * Not thread-safe.
This page took 0.024104 seconds and 5 git commands to generate.