repo.or.cz
/
csql.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[csql.git]
/
include
/
FaultTest.h
blob
8cd6ca83d032fa78b4587bada832b31b4ef5beaf
1
2
#ifndef FAULT_H
3
#define FAULT_H
4
5
extern
void
injectFault
(
char
*
testname
,
void
*
object
);
6
7
#ifdef FAULTTEST
8
#define INJECT_FAULT injectFault
9
#else
10
#define INJECT_FAULT ;
11
#endif
12
13
#endif
14