Adapted comment to the new TimerListener interface

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1957 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
unzner
2012-11-24 09:48:31 +00:00
parent 1b9583aede
commit 158ac496fe

View File

@ -167,7 +167,7 @@ unsigned L4SysExperiment::calculateTimeout(unsigned instr_left) {
// the timeout in seconds, plus one backup second (avoids rounding overhead)
// [instr] / [instr / s] = [s]
unsigned seconds = instr_left / L4SYS_BOCHS_IPS + 1;
// 1.1 (+10 percent) * 1000 ms/s * [s]
// 1.1 (+10 percent) * 1000000 mus/s * [s]
return 1100000 * seconds;
}