comments added and corrected

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1030 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
hellwig
2012-04-05 09:40:39 +00:00
parent a4bed2d329
commit ff828ba48f
13 changed files with 33 additions and 28 deletions

View File

@ -27,8 +27,8 @@
#include "iodev/iodev.h"
/****************************************************************
* BOCHS-MODIFIED
* Author: Adrian Böckenkamp
* DanceOS - BOCHS-MODIFIED
*
*/
// Just a dummy function to define a join-point. This function is
@ -131,7 +131,7 @@ void BX_CPU_C::cpu_loop(Bit32u max_instr_count)
// If request to return to caller ASAP.
return;
}
}else if(sal::restore_bochs_request){
}else if(sal::restore_bochs_request){ //DanceOS
return;
}
@ -152,8 +152,8 @@ void BX_CPU_C::cpu_loop(Bit32u max_instr_count)
}
#endif
/****************************************************************
* BOCHS-MODIFIED
* Author: Adrian Böckenkamp
* DanceOS - BOCHS-MODIFIED
*
*/
defineCPULoopJoinPoint(BX_CPU_THIS, i);
@ -501,8 +501,9 @@ unsigned BX_CPU_C::handleAsyncEvent(void)
// setting kill_bochs_request causes the cpu loop to return ASAP.
return 1; // Return to caller of cpu_loop.
}
//DanceOS
#ifdef DANCEOS_RESTORE
else if (sal::restore_bochs_request) { //DanceOS Richard Hellwig
else if (sal::restore_bochs_request) {
return 1;
}
#endif