[Assorted-commits] SF.net SVN: assorted: [409] numa-bench/trunk/src/malloc.cc
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-02-13 18:04:06
|
Revision: 409 http://assorted.svn.sourceforge.net/assorted/?rev=409&view=rev Author: yangzhang Date: 2008-02-13 10:03:22 -0800 (Wed, 13 Feb 2008) Log Message: ----------- fixed warmup messages Modified Paths: -------------- numa-bench/trunk/src/malloc.cc Modified: numa-bench/trunk/src/malloc.cc =================================================================== --- numa-bench/trunk/src/malloc.cc 2008-02-13 18:03:09 UTC (rev 408) +++ numa-bench/trunk/src/malloc.cc 2008-02-13 18:03:22 UTC (rev 409) @@ -179,7 +179,7 @@ } // Print the elapsed time and "result". - if (warmup) cout << "warmup: " << endl; + if (warmup) cout << "warmup: "; cout << cpu; t.print(); @@ -252,7 +252,7 @@ } else { // Chew the memory area from each core in sequence. for (int i = 0; i < config.ncores; i++) { - chew(p, i, config, ""); + chew(p, i, config, false); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |