source: rtems-tools/tester/covoar/app_common.h @ f9a4b2c

5
Last change on this file since f9a4b2c 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: 938 bytes
Line 
1#ifndef __APP_COMMON_h
2#define __APP_COMMON_h
3
4#include <list>
5
6#include "DesiredSymbols.h"
7#include "Explanations.h"
8#include "TargetBase.h"
9
10extern Coverage::Explanations*      AllExplanations;
11extern Coverage::ObjdumpProcessor*  objdumpProcessor;
12extern Coverage::DesiredSymbols*    SymbolsToAnalyze;
13extern bool                         Verbose;
14extern const char*                  outputDirectory;
15extern bool                         BranchInfoAvailable;
16extern Target::TargetBase*          TargetInfo;
17extern const char*                  dynamicLibrary;
18extern const char*                  projectName;
19
20#define MAX_LINE_LENGTH             512
21extern char                         inputBuffer[MAX_LINE_LENGTH];
22extern char                         inputBuffer2[MAX_LINE_LENGTH];
23
24
25bool FileIsNewer( const char *f1, const char *f2 );
26bool FileIsReadable( const char *f1 );
27bool ReadUntilFound( FILE *file, const char *line );
28
29#endif
Note: See TracBrowser for help on using the repository browser.