From 086afe3375ee1fe3cda34c1b2302bdd6c95ebc0b Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Sat, 22 Sep 2012 00:28:57 +0200 Subject: increased benchmark time --- src/benchmark.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/benchmark.c b/src/benchmark.c index 8ab3f8c..f18ed1c 100644 --- a/src/benchmark.c +++ b/src/benchmark.c @@ -102,14 +102,14 @@ void start_benchmark(struct benchmark_st * st) fprintf (stderr, "error: CreateThread %u\n", GetLastError ()); exit(1); } - st->alarm_timeout.QuadPart = (2) * 10000000; + st->alarm_timeout.QuadPart = (5) * 10000000; if (SetWaitableTimer (st->wtimer, &st->alarm_timeout, 0, NULL, NULL, FALSE) == 0) { fprintf (stderr, "error: SetWaitableTimer %u\n", GetLastError ()); exit(1); } #else - alarm (2); + alarm (5); #endif } -- cgit v1.2.3