33d32
< #include <fstream>
35d33
< #include <unistd.h>
47,49d44
< Tick curTick = 0;
< Tick ticksPerSecond = ULL(2000000000);
<
75,76d69
< ostream *outputStream = &cout;
<
88c81
< char *progname = "";
---
> const char *progname = "";
103a97,98
>
> #if USE_MYSQL
104a100
> string mysql_db;
107a104
> #endif
111c108
< while ((c = getopt(argc, argv, "cdh:P:p:s:tu:")) != -1) {
---
> while ((c = getopt(argc, argv, "cD:dh:P:p:s:tu:")) != -1) {
118a116,122
> case 't':
> text = true;
> break;
> #if USE_MYSQL
> case 'D':
> mysql_db = optarg;
> break;
128,130d131
< case 't':
< text = true;
< break;
133a135
> #endif
547a550
> #if USE_MYSQL
550c553
< out.connect(mysql_host, mysql_user, mysql_passwd, "m5stats",
---
> out.connect(mysql_host, mysql_db, mysql_user, mysql_passwd, "test",
553a557
> #endif