diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2005-11-02 14:48:49 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2005-11-02 14:48:49 -0500 |
commit | f36b854ca51c8e74442026f40c7e37bb2051772b (patch) | |
tree | 033904d7c73dddc79321dc843a4d137d1847826b | |
parent | 07ef1170e0bc04a0490d229c3e58c4a70fa4a1f1 (diff) | |
download | gem5-f36b854ca51c8e74442026f40c7e37bb2051772b.tar.xz |
Don't bother putting distributions in the DB, they aren't really
supported.
--HG--
extra : convert_revision : a732fa169962632937ace368430cb3733c0e3cc6
-rw-r--r-- | base/stats/mysql.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/base/stats/mysql.cc b/base/stats/mysql.cc index 27212b2c2..95aa53241 100644 --- a/base/stats/mysql.cc +++ b/base/stats/mysql.cc @@ -839,6 +839,7 @@ MySql::visit(const VectorData &data) void MySql::visit(const DistData &data) { + return; if (!configured) configure(data); else @@ -848,6 +849,7 @@ MySql::visit(const DistData &data) void MySql::visit(const VectorDistData &data) { + return; if (!configured) configure(data); else @@ -857,6 +859,7 @@ MySql::visit(const VectorDistData &data) void MySql::visit(const Vector2dData &data) { + return; if (!configured) configure(data); else |