mapbench hack: ensure niter is in bss to work around buggy vm

上级 2a7258fc
...@@ -14,7 +14,7 @@ enum { npg = 1 }; ...@@ -14,7 +14,7 @@ enum { npg = 1 };
static pthread_barrier_t bar; static pthread_barrier_t bar;
static pthread_barrier_t bar2; static pthread_barrier_t bar2;
static int niter = 100; static int niter;
void* void*
thr(void *arg) thr(void *arg)
...@@ -61,6 +61,7 @@ main(int ac, char **av) ...@@ -61,6 +61,7 @@ main(int ac, char **av)
die("usage: %s nthreads [nloop]", av[0]); die("usage: %s nthreads [nloop]", av[0]);
int nthread = atoi(av[1]); int nthread = atoi(av[1]);
niter = 100;
if (ac > 2) if (ac > 2)
niter = atoi(av[2]); niter = atoi(av[2]);
......
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论