Comments + Coding-Style fixed.

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1461 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
adrian
2012-07-30 13:34:52 +00:00
parent f3f58750c9
commit adb2bf2787
3 changed files with 7 additions and 8 deletions

View File

@ -72,7 +72,7 @@ BochsController::BochsController()
BochsController::~BochsController()
{
for(RegisterManager::iterator it = m_Regs->begin(); it != m_Regs->end(); it++)
for (RegisterManager::iterator it = m_Regs->begin(); it != m_Regs->end(); it++)
delete (*it); // free the memory, allocated in the constructor
m_Regs->clear();
delete m_Regs;

View File

@ -74,7 +74,7 @@ enum GPRegisterId {
RID_R8, RID_R9, RID_R10, RID_R11, RID_R12, RID_R13, RID_R14, RID_R15,
#else // 32 bit register id's:
RID_EAX = 0, RID_ECX, RID_EDX, RID_EBX, RID_ESP, RID_EBP, RID_ESI, RID_EDI,
#endif
#endif // common register id's (independent of the current register width):
RID_CAX = 0, RID_CCX, RID_CDX, RID_CBX, RID_CSP, RID_CBP, RID_CSI, RID_CDI,
RID_LAST_GP_ID
};

View File

@ -3,12 +3,11 @@
#include "efw/ExperimentFlow.hpp"
class HSCSimpleExperiment : public fail::ExperimentFlow
{
public:
HSCSimpleExperiment() { }
bool run();
class HSCSimpleExperiment : public fail::ExperimentFlow {
public:
HSCSimpleExperiment() { }
bool run();
};
#endif // __HSC_SIMPLE_EXPERIMENT_HPP__