RAMpage campaign: bugfix: detail description buffer too small
... for one single experiment with weird output. git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1667 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
@ -18,7 +18,7 @@ bool RAMpageCampaign::run()
|
|||||||
set<uint64_t> existing_results;
|
set<uint64_t> existing_results;
|
||||||
ifstream oldresults(results_filename, ios::in);
|
ifstream oldresults(results_filename, ios::in);
|
||||||
if (oldresults.is_open()) {
|
if (oldresults.is_open()) {
|
||||||
char buf[1024];
|
char buf[16*1024];
|
||||||
uint64_t addr;
|
uint64_t addr;
|
||||||
int count = 0;
|
int count = 0;
|
||||||
m_log << "scanning existing results ..." << endl;
|
m_log << "scanning existing results ..." << endl;
|
||||||
|
|||||||
Reference in New Issue
Block a user