Disable use of hardware perf counters.

They don't seem to actually work on a lot of hardware.
This commit is contained in:
Søren Sandmann
2010-03-09 12:06:36 -05:00
parent 1707bebe93
commit 08d4d26060
4 changed files with 10 additions and 6 deletions

View File

@ -110,13 +110,12 @@ die (const char *err_msg)
}
int
main (int argc,
char *argv[])
main (int argc, char *argv[])
{
Application *app = g_new0 (Application, 1);
GError *err;
app->collector = collector_new (NULL, NULL);
app->collector = collector_new (FALSE, NULL, NULL);
app->outfile = g_strdup (argv[1]);
app->main_loop = g_main_loop_new (NULL, 0);