2015-11-14 07:49:42 -05:00
|
|
|
#ifndef ROFI_TIMINGS_H
|
|
|
|
#define ROFI_TIMINGS_H
|
|
|
|
#include <config.h>
|
2016-01-07 02:54:24 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup TIMINGS Timings
|
|
|
|
* @ingroup HELPERS
|
|
|
|
* @{
|
|
|
|
*/
|
2015-11-14 07:49:42 -05:00
|
|
|
#if TIMINGS
|
2016-10-15 09:39:08 -04:00
|
|
|
/**
|
|
|
|
* Init the timestamping mechanism .
|
|
|
|
* implementation.
|
|
|
|
*/
|
2015-11-14 07:49:42 -05:00
|
|
|
void rofi_timings_init ( void );
|
2016-10-15 09:39:08 -04:00
|
|
|
/**
|
|
|
|
* @param str function name.
|
|
|
|
* @param line line number
|
|
|
|
* @param msg message
|
|
|
|
*
|
|
|
|
* Report a tick.
|
|
|
|
*/
|
2015-11-14 07:49:42 -05:00
|
|
|
void rofi_timings_tick ( char const *str, int line, char const *msg );
|
2016-10-15 09:39:08 -04:00
|
|
|
/**
|
|
|
|
* Stop the timestamping mechanism
|
|
|
|
*/
|
2015-11-14 07:49:42 -05:00
|
|
|
void rofi_timings_quit ( void );
|
|
|
|
|
2016-10-15 09:39:08 -04:00
|
|
|
/**
|
|
|
|
* Start timestamping mechanism.
|
|
|
|
* Call to this function is time 0.
|
|
|
|
*/
|
2015-11-24 16:53:40 -05:00
|
|
|
#define TIMINGS_START() rofi_timings_init ()
|
2016-10-15 09:39:08 -04:00
|
|
|
/**
|
|
|
|
* Report current time since TIMINGS_START
|
|
|
|
*/
|
2015-12-02 12:11:23 -05:00
|
|
|
#define TICK() rofi_timings_tick ( __func__, __LINE__, "" )
|
2016-10-15 09:39:08 -04:00
|
|
|
/**
|
|
|
|
* @param a an string
|
|
|
|
* Report current time since TIMINGS_START
|
|
|
|
*/
|
2015-12-02 12:11:23 -05:00
|
|
|
#define TICK_N( a ) rofi_timings_tick ( __func__, __LINE__, a )
|
2016-10-15 09:39:08 -04:00
|
|
|
/**
|
|
|
|
* Stop timestamping mechanism.
|
|
|
|
*/
|
2015-11-24 16:53:40 -05:00
|
|
|
#define TIMINGS_STOP() rofi_timings_quit ()
|
2015-11-14 07:49:42 -05:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2016-10-15 09:39:08 -04:00
|
|
|
/**
|
|
|
|
* Start timestamping mechanism.
|
|
|
|
* Call to this function is time 0.
|
|
|
|
*/
|
2015-11-14 07:49:42 -05:00
|
|
|
#define TIMINGS_START()
|
2016-10-15 09:39:08 -04:00
|
|
|
/**
|
|
|
|
* Stop timestamping mechanism.
|
|
|
|
*/
|
2015-11-14 07:49:42 -05:00
|
|
|
#define TIMINGS_STOP()
|
2016-10-15 09:39:08 -04:00
|
|
|
/**
|
|
|
|
* Report current time since TIMINGS_START
|
|
|
|
*/
|
2015-11-14 07:49:42 -05:00
|
|
|
#define TICK()
|
2016-10-15 09:39:08 -04:00
|
|
|
/**
|
|
|
|
* @param a an string
|
|
|
|
* Report current time since TIMINGS_START
|
|
|
|
*/
|
2015-11-14 07:49:42 -05:00
|
|
|
#define TICK_N( a )
|
|
|
|
|
|
|
|
#endif // TIMINGS
|
2016-01-07 02:54:24 -05:00
|
|
|
/*@}*/
|
2015-11-14 07:49:42 -05:00
|
|
|
#endif // ROFI_TIMINGS_H
|