This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Other format: | [Raw text] |
+ for (i = 0; i < ITER; i++) + { + for (j = 0; j < NUM_SAMPLES; j++) + { + clock_gettime (CLOCK_MONOTONIC_RAW, &start); + BENCH_FUNC(j); + clock_gettime (CLOCK_MONOTONIC_RAW, &end); + + int64_t cur = (end.tv_nsec - start.tv_nsec + + (end.tv_sec - start.tv_sec) * 1000000000);
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |