mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
Easy debug macro enabling
Now you don't need to toggle show_debug_xxxx anymore Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
62ab7e4612
commit
3f63dd1023
1 changed files with 6 additions and 6 deletions
12
src/misc.h
12
src/misc.h
|
@ -60,21 +60,21 @@ extern int Bioskey();
|
|||
////
|
||||
//// Debug
|
||||
////
|
||||
extern bool dbg_show_mean;
|
||||
extern bool dbg_show_hit_rate;
|
||||
|
||||
extern long dbg_cnt0;
|
||||
extern long dbg_cnt1;
|
||||
|
||||
inline void dbg_hit_on(bool b) { dbg_cnt0++; if (b) dbg_cnt1++; }
|
||||
inline void dbg_hit_on(bool b) { dbg_show_hit_rate = true; dbg_cnt0++; if (b) dbg_cnt1++; }
|
||||
inline void dbg_hit_on_c(bool c, bool b) { if (c) dbg_hit_on(b); }
|
||||
|
||||
inline void dbg_before() { dbg_cnt0++; }
|
||||
inline void dbg_after() { dbg_cnt1++; }
|
||||
inline void dbg_before() { dbg_show_hit_rate = true; dbg_cnt0++; }
|
||||
inline void dbg_after() { dbg_show_hit_rate = true; dbg_cnt1++; }
|
||||
|
||||
inline void dbg_mean_of(int v) { dbg_cnt0++; dbg_cnt1 += v; }
|
||||
|
||||
extern void dbg_print_hit_rate();
|
||||
extern void dbg_print_mean();
|
||||
|
||||
extern bool dbg_show_mean;
|
||||
extern bool dbg_show_hit_rate;
|
||||
|
||||
#endif // !defined(MISC_H_INCLUDED)
|
||||
|
|
Loading…
Add table
Reference in a new issue