12 lines
215 B
C
12 lines
215 B
C
#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
|