#include "base/cprintf.hh"
#include "base/hostinfo.hh"
#include "base/misc.hh"
-#include "base/python.hh"
#include "base/statistics.hh"
#include "base/str.hh"
#include "base/time.hh"
#include "base/misc.hh"
#include "base/statistics.hh"
#include "base/stats/text.hh"
-#include "base/stats/python.hh"
#include "base/stats/mysql.hh"
#include "sim/host.hh"
{
panic("incorrect usage.\n"
"usage:\n"
- "\t%s [-p <python file>] [-t [-c] [-d]]\n", progname);
+ "\t%s [-t [-c] [-d]]\n", progname);
}
int
bool descriptions = false;
bool compat = false;
bool text = false;
- string pyfile;
string mysql_name;
string mysql_host;
string mysql_user = "binkertn";
case 'P':
mysql_passwd = optarg;
break;
- case 'p':
- pyfile = optarg;
- break;
case 's':
mysql_name = optarg;
break;
out();
}
- if (!pyfile.empty()) {
- Python out(pyfile);
- out();
- }
-
if (!mysql_name.empty()) {
MySql out;
out.connect(mysql_host, mysql_user, mysql_passwd, "m5stats",