* @author Niki
* @date 2020 - 2024
*
- * @brief Timing macros START and STOP
+ * @brief Timing macros TIMING_START and TIMING_STOP
*
* 2 macro are provided to print the elapsed time between the 2 to stdout.
*/
/**
* Start the timer.
*/
-#define START struct timeval TIMING_start, TIMING_stop; \
+#define TIMING_START struct timeval TIMING_start, TIMING_stop; \
/* 1 usec = 0.000001 s */ \
char cusec[7]; \
gettimeofday(&TIMING_start, NULL);
/**
* Stop the timer and print the elapsed time to stdout.
*/
-#define STOP gettimeofday(&TIMING_stop, NULL); \
+#define TIMING_STOP gettimeofday(&TIMING_stop, NULL); \
TIMING_stop.tv_sec = TIMING_stop.tv_sec - TIMING_start.tv_sec; \
TIMING_stop.tv_usec = TIMING_stop.tv_usec - TIMING_start.tv_usec; \
sprintf(cusec, "%0.6d", TIMING_stop.tv_usec); \