Force usage of assert() condition when NDEBUG is defined
[lttng-tools.git] / tests / utils / utils.c
index 46ec61cd092397ea42fb3adbb63e78186de7d20b..fee74e961245d02e0322f70c86c9e7d21e33cd43 100644 (file)
@@ -5,10 +5,8 @@
  *
  */
 
-#include <assert.h>
 #include <common/compat/time.h>
 #include <common/time.h>
-#include <errno.h>
 #include <fcntl.h>
 #include <poll.h>
 #include <stdbool.h>
@@ -19,6 +17,9 @@
 #include <sys/types.h>
 #include <unistd.h>
 
+#include <common/compat/errno.h>
+#include <common/macros.h>
+
 #include "utils.h"
 
 static inline
@@ -26,7 +27,7 @@ int64_t elapsed_time_ns(struct timespec *t1, struct timespec *t2)
 {
        struct timespec delta;
 
-       assert(t1 && t2);
+       LTTNG_ASSERT(t1 && t2);
        delta.tv_sec = t2->tv_sec - t1->tv_sec;
        delta.tv_nsec = t2->tv_nsec - t1->tv_nsec;
        return ((int64_t) NSEC_PER_SEC * (int64_t) delta.tv_sec) +
This page took 0.023663 seconds and 4 git commands to generate.