Introduce COVERAGE_ON/OFF macros, rename shell functions to shell_*.

Coverage collection slowdown is ~75x now.
This commit is contained in:
2020-03-10 00:03:57 +03:00
parent 70fc19fc5e
commit 7d3dea91c0
7 changed files with 250 additions and 142 deletions
+4
View File
@@ -1,7 +1,11 @@
#ifndef TRACE_LBR_H_INCLUDED
#define TRACE_LBR_H_INCLUDED
#include <inttypes.h>
void trace_lbr_begin(void);
void trace_lbr_end(void);
uint32_t trace_lbr_pause(void);
void trace_lbr_resume(uint32_t value);
#endif