From e98b18e6786822d4a4b5d29413b3acd91d442ee3 Mon Sep 17 00:00:00 2001 From: hellwig Date: Thu, 31 Jan 2013 14:32:14 +0000 Subject: [PATCH] Breakpoint aspects updated The aspects respond to the new CONFIG_EVENT_BREAKPOINT_RANGE flag now. git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@2040 8c4709b5-6ec9-48aa-a5cd-a96041d1645a --- src/core/sal/bochs/BreakRepeatInstr.ah | 2 +- src/core/sal/bochs/Breakpoints.ah | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/sal/bochs/BreakRepeatInstr.ah b/src/core/sal/bochs/BreakRepeatInstr.ah index fd11e19b..ed9857ed 100644 --- a/src/core/sal/bochs/BreakRepeatInstr.ah +++ b/src/core/sal/bochs/BreakRepeatInstr.ah @@ -4,7 +4,7 @@ #include "config/VariantConfig.hpp" #include "config/FailConfig.hpp" -#if defined(BUILD_BOCHS) && defined(CONFIG_EVENT_BREAKPOINTS) +#if defined(BUILD_BOCHS) && (defined(CONFIG_EVENT_BREAKPOINTS) || defined(CONFIG_EVENT_BREAKPOINTS_RANGE)) #include diff --git a/src/core/sal/bochs/Breakpoints.ah b/src/core/sal/bochs/Breakpoints.ah index 44063768..7e577efb 100644 --- a/src/core/sal/bochs/Breakpoints.ah +++ b/src/core/sal/bochs/Breakpoints.ah @@ -4,7 +4,7 @@ #include "config/VariantConfig.hpp" #include "config/FailConfig.hpp" -#if defined(BUILD_BOCHS) && defined(CONFIG_EVENT_BREAKPOINTS) +#if defined(BUILD_BOCHS) && (defined(CONFIG_EVENT_BREAKPOINTS) || defined(CONFIG_EVENT_BREAKPOINTS_RANGE)) #include "bochs.h" #include "cpu/cpu.h"