Subversion Repositories Kolibri OS

Rev

Rev 9325 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef TRACE_H_INCLUDED
  2. #define TRACE_H_INCLUDED
  3.  
  4. #include <inttypes.h>
  5.  
  6. extern uint32_t coverage;
  7.  
  8. #define COVERAGE_ON()
  9.  
  10. #define COVERAGE_OFF()
  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
  18.