source: rtems-tools/tester/covoar/skyeye_header.h @ 100f517

4.104.115
Last change on this file since 100f517 was 100f517, checked in by Chris Johns <chrisj@…>, on 05/09/14 at 11:50:37

covoar: Merger the covoar source from rtems-testing.git.

Use waf to build covoar.

  • Property mode set to 100644
File size: 540 bytes
Line 
1/*! @file skyeye_header.h
2 *  @brief skyeye_header Implementation
3 *
4 *  This file contains the definition of the format
5 *  for coverage files written by the Skyeye simulator.
6 */
7
8#ifndef __Skyeye_Header_h
9#define __Skyeye_Header_h
10
11#define MAX_DESC_STR 32
12
13typedef struct prof_header_s {
14  int ver;                 /** the version of header file */
15  int header_length;       /** The length of header */
16  int prof_start;
17  int prof_end;
18  char desc[MAX_DESC_STR]; /** The description info for profiling file */
19} prof_header_t;
20
21#endif
Note: See TracBrowser for help on using the repository browser.