diff options
Diffstat (limited to 'tests/introspective-cputime.c')
-rw-r--r-- | tests/introspective-cputime.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/introspective-cputime.c b/tests/introspective-cputime.c index 7ce9a36..3f4158e 100644 --- a/tests/introspective-cputime.c +++ b/tests/introspective-cputime.c @@ -29,17 +29,16 @@ int main() { sandglass_t sandglass; - sandglass_attributes_t attr = { SANDGLASS_INTROSPECTIVE, SANDGLASS_CPUTIME }; struct timespec tosleep = { .tv_sec = 0, .tv_nsec = 111111111L }; - if (sandglass_create(&sandglass, &attr, &attr) != 0) { + if (sandglass_init_introspective(&sandglass, SANDGLASS_CPUTIME) != 0) { perror("sandglass_create()"); return EXIT_FAILURE; } sandglass_bench(&sandglass, sandglass_spin(&tosleep)); - printf("%.15g\n", sandglass.grains/sandglass.resolution); + printf("%.15g\n", sandglass.grains/sandglass.freq); return EXIT_SUCCESS; } |