am 73d2059f: Merge "Explain why clock(3) isn\'t broken."
* commit '73d2059f9b3f53446e25d800d64a86efb3bf3f9f': Explain why clock(3) isn't broken.
This commit is contained in:
commit
934028eba3
@ -34,5 +34,8 @@
|
||||
clock_t clock() {
|
||||
tms t;
|
||||
times(&t);
|
||||
// Although times(2) and clock(3) both use the type clock_t, the units are
|
||||
// different. For times(2) it's pure clock ticks, but for clock(3) the unit
|
||||
// is CLOCKS_PER_SEC, so we need to scale appropriately.
|
||||
return (t.tms_utime + t.tms_stime) * (CLOCKS_PER_SEC / sysconf(_SC_CLK_TCK));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user