clock() precision in time.h

前端 未结 4 1657
[愿得一人]
[愿得一人] 2020-12-09 22:22

I am trying to calculate the number of ticks a function uses to run and to do so an using the clock() function like so:

unsigned long time = clo         


        
4条回答
  •  南方客
    南方客 (楼主)
    2020-12-09 23:04

    There are a number of more accurate timers in POSIX.

    • gettimeofday() - officially obsolescent, but very widely available; microsecond resolution.
    • clock_gettime() - the replacement for gettimeofday() (but not necessarily so widely available; on an old version of Solaris, requires -lposix4 to link), with nanosecond resolution.

    There are other sub-second timers of greater or lesser antiquity, portability, and resolution, including:

    • ftime() - millisecond resolution (marked 'legacy' in POSIX 2004; not in POSIX 2008).
    • clock() - which you already know about. Note that it measures CPU time, not elapsed (wall clock) time.
    • times() - CLK_TCK or HZ. Note that this measures CPU time for parent and child processes.

    Do not use ftime() or times() unless there is nothing better. The ultimate fallback, but not meeting your immediate requirements, is

    • time() - one second resolution.

    The clock() function reports in units of CLOCKS_PER_SEC, which is required to be 1,000,000 by POSIX, but the increment may happen less frequently (100 times per second was one common frequency). The return value must be defined by CLOCKS_PER_SEC to get time in seconds.

提交回复
热议问题