From 0b12bb29adc33255b97d2fb995ef145f0127d950 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 20 Sep 2009 16:09:53 +0000 Subject: Make SANDGLASS_REALTICKS accurate to 1 clock cycle. --- tests/monotonic-realticks.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/monotonic-realticks.c b/tests/monotonic-realticks.c index 119b3bb..eb9e9f6 100644 --- a/tests/monotonic-realticks.c +++ b/tests/monotonic-realticks.c @@ -30,16 +30,16 @@ main() { sandglass_t sandglass; sandglass_attributes_t attr = { SANDGLASS_MONOTONIC, SANDGLASS_REALTICKS }; - struct timespec tosleep = { .tv_sec = 0, .tv_nsec = 111111111L }; + unsigned int i = 0; if (sandglass_create(&sandglass, &attr, &attr) != 0) { perror("sandglass_create()"); return EXIT_FAILURE; } - sandglass_bench(&sandglass, sandglass_spin(&tosleep)); + sandglass_bench(&sandglass, ++i); - printf("%g\n", sandglass.grains/sandglass.resolution); + printf("%ld\n", sandglass.grains); return EXIT_SUCCESS; } -- cgit v1.2.3