Subversion Repositories Kolibri OS

Rev

Rev 9325 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9325 Boppan 1
#ifndef TRACE_H_INCLUDED
2
#define TRACE_H_INCLUDED
3
 
4
#include 
5
 
6
extern uint32_t coverage;
7
 
9337 Boppan 8
#define COVERAGE_ON()
9325 Boppan 9
 
9337 Boppan 10
#define COVERAGE_OFF()
9325 Boppan 11
 
12
void trace_begin(void);
13
void trace_end(void);
14
uint32_t trace_pause(void);
15
void trace_resume(uint32_t value);
16
 
17
#endif