diff options
author | Nathan Binkert <binkertn@umich.edu> | 2007-03-03 07:47:00 -0800 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2007-03-03 07:47:00 -0800 |
commit | e78bcd94a052da1ea7f669df4929ae375339bca6 (patch) | |
tree | 5876226e9fe13e7d020103c74f1fff1b61d60865 /src/base/stats/mysql.hh | |
parent | 68ad1533096ab736c534cb29364a1a93e1010306 (diff) | |
parent | 53f5fda5de2b2ed7229cec0118d27ab420f8dca1 (diff) | |
download | gem5-e78bcd94a052da1ea7f669df4929ae375339bca6.tar.xz |
Merge zizzer.eecs.umich.edu:/bk/newmem
into iceaxe.int.chaotic.net:/Users/nate/work/m5/outgoing
--HG--
extra : convert_revision : b3d48721ead389fa807c0d5392039d4fc71a252e
Diffstat (limited to 'src/base/stats/mysql.hh')
-rw-r--r-- | src/base/stats/mysql.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/base/stats/mysql.hh b/src/base/stats/mysql.hh index 52f93ac61..0ce381c2f 100644 --- a/src/base/stats/mysql.hh +++ b/src/base/stats/mysql.hh @@ -187,15 +187,15 @@ class MySql : public Output void configure(const FormulaData &data); }; -bool initMySQL(std::string host, std::string database, std::string user = "", - std::string passwd = "", std::string name = "test", - std::string sample = "0", std::string project = "test"); +bool initMySQL(std::string host, std::string database, std::string user, + std::string passwd, std::string project, std::string name, + std::string sample); #if !USE_MYSQL inline bool initMySQL(std::string host, std::string user, std::string password, - std::string database, std::string name, std::string sample, - std::string project) + std::string database, std::string project, std::string name, + std::string sample) { return false; } |