summaryrefslogtreecommitdiffstats
path: root/tests/monotonic-realticks.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/monotonic-realticks.c')
-rw-r--r--tests/monotonic-realticks.c6
1 files changed, 3 insertions, 3 deletions
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;
}