stats: remove simplescalar compatibility for printing

This commit is contained in:
Nathan Binkert
2009-04-22 10:25:14 -07:00
parent 61a68371be
commit ca3d82b38a
5 changed files with 76 additions and 191 deletions

View File

@@ -30,8 +30,8 @@ import internal
from internal.stats import StatEvent as event
def initText(filename, desc=True, compat=True):
internal.stats.initText(filename, desc, compat)
def initText(filename, desc=True):
internal.stats.initText(filename, desc)
def initMySQL(host, database, user='', passwd='', project='test', name='test',
sample='0'):

View File

@@ -41,7 +41,7 @@
namespace Stats {
void initSimStats();
void initText(const std::string &filename, bool desc=true, bool compat=true);
void initText(const std::string &filename, bool desc);
void initMySQL(std::string host, std::string database, std::string user,
std::string passwd, std::string project, std::string name,
std::string sample);