"failstar" sounds like a name for a cruise liner from the 80s. As "*" isn't a desirable part of directory names, just name the whole thing "fail/", the core parts being stored in "fail/core/". Additionally fixing two build system dependency issues: - missing jobserver -> protomessages dependency - broken bochs -> fail dependency (add_custom_target DEPENDS only allows plain file dependencies ... cmake for the win) git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@956 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
31 lines
852 B
C++
31 lines
852 B
C++
#ifndef __ASPECT_CONFIG_HPP__
|
|
#define __ASPECT_CONFIG_HPP__
|
|
|
|
// The following configuration macros to disable (0) / enable (1) the various
|
|
// event sources, fault injection sinks, and miscellaneous other features.
|
|
|
|
// Event sources
|
|
#define CONFIG_EVENT_CPULOOP 0
|
|
#define CONFIG_EVENT_MEMREAD 0
|
|
#define CONFIG_EVENT_MEMWRITE 0
|
|
#define CONFIG_EVENT_GUESTSYS 0
|
|
#define CONFIG_EVENT_INTERRUPT 0
|
|
#define CONFIG_EVENT_TRAP 0
|
|
#define CONFIG_EVENT_JUMP 0
|
|
|
|
// Save/restore functionality
|
|
#define CONFIG_SR_RESTORE 0
|
|
#define CONFIG_SR_SAVE 0
|
|
#define CONFIG_SR_REBOOT 0
|
|
|
|
// Miscellaneous
|
|
#define CONFIG_STFU 0
|
|
#define CONFIG_SUPPRESS_INTERRUPTS 0
|
|
#define CONFIG_DISABLE_KEYB_INTERRUPTS 0
|
|
|
|
// Fault injection
|
|
#define CONFIG_FI_MEM_ACCESS_BITFLIP 0
|
|
|
|
|
|
#endif /* __ASPECT_CONFIG_HPP__ */
|