summaryrefslogtreecommitdiff
path: root/src/python/swig
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2007-03-03 07:45:55 -0800
committerNathan Binkert <binkertn@umich.edu>2007-03-03 07:45:55 -0800
commit53f5fda5de2b2ed7229cec0118d27ab420f8dca1 (patch)
treeeb7afbce6cf0bd508afc59acfdbd46e4dd05d1cd /src/python/swig
parentffe6bebb05c30b0f1d7cde5ad5b94a2551938630 (diff)
downloadgem5-53f5fda5de2b2ed7229cec0118d27ab420f8dca1.tar.xz
Do the default argument stuff in python
--HG-- extra : convert_revision : 235f85e611a669401c6ddfbdf14244e80eb55888
Diffstat (limited to 'src/python/swig')
-rw-r--r--src/python/swig/stats.i6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/python/swig/stats.i b/src/python/swig/stats.i
index b7cd47157..d36f82dbc 100644
--- a/src/python/swig/stats.i
+++ b/src/python/swig/stats.i
@@ -42,9 +42,9 @@
namespace Stats {
void initSimStats();
void initText(const std::string &filename, bool desc=true, bool compat=true);
-void 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");
+void initMySQL(std::string host, std::string database, std::string user,
+ std::string passwd, std::string project, std::string name,
+ std::string sample);
void StatEvent(bool dump, bool reset, Tick when = curTick, Tick repeat = 0);