RAMpage campaign: run one experiment for every 4k page

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1666 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
hsc
2012-09-20 17:19:41 +00:00
parent d313ba85a2
commit 74e75da8d6

View File

@ -60,7 +60,7 @@ bool RAMpageCampaign::run()
<< address_bits << " address bits" << endl;
// systematically march through the fault space
for (uint64_t n = 0; n < 1024; ++n) {
for (uint64_t n = 0; n < 1024*256; ++n) {
uint64_t addr = reverse_bits(n) >> (64 - address_bits);
if (addr >= MEM_SIZE ||
existing_results.find(addr) != existing_results.end()) {