Skip to content
Advertisement

Measuring Elapsed Time Using clock_gettime(CLOCK_MONOTONIC)

I have to elapse the measuring time during multiple threads. I must get an output like this:

JavaScript

Firstly, I used gettimeofday but I saw that there are some negative numbers then I made little research and learn that gettimeofday is not reliable to measure elapsed time. Then I decide to use clock_gettime(CLOCK_MONOTONIC).

However, there is a problem. When I use second to measure time, I cannot measure time precisely. When I use nanosecond, length of end.tv_nsec variable cannot exceed 9 digits (since it is a long variable). That means, when it has to move to the 10th digit, it still remains at 9 digits and actually the number gets smaller, causing the elapsed time to be negative.

That is my code:

JavaScript

Unfortunately, timespec does not have microsecond variable. If you can help me I will be very happy.

Advertisement

Answer

Write a helper function that calculates the difference between two timespecs:

JavaScript

If you want it in microseconds, just divide it by 1000, or use:

JavaScript

Remember to include <inttypes.h>, so that you can use conversion "%" PRIi64 to print integers of int64_t type:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement