source: rtems-tools/tester/covoar/rtemscov_header.h @ 0c4884a

Last change on this file since 0c4884a 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: 650 bytes
Line 
1/*! @file rtemscov_header.h
2 *  @brief rtemscov_header Implementation
3 *
4 *  This file contains the implementation of the functions supporting
5 *  RTEMS Common Coverage Map file format.
6 *
7 */
8
9#ifndef __RTEMS_Coverage_Header_h
10#define __RTEMS_Coverage_Header_h
11
12#define MAX_DESC_STR 32
13
14/*!
15 *
16 *   This structure contains XXX
17 */
18
19typedef struct prof_header_s{
20  /** the version of header file */
21  int ver;
22  /** The length of header */
23  int header_length;
24  /** starting address */
25  int start;
26  /** ending address */
27  int end;
28  /** The description info for profiling file */
29  char desc[MAX_DESC_STR];
30} rtems_coverage_map_header_t;
31
32#endif
Note: See TracBrowser for help on using the repository browser.