fix incorrect clock tick scaling in fallback case of clock()
authorRich Felker <dalias@aerifal.cx>
Sun, 5 May 2013 18:51:25 +0000 (14:51 -0400)
committerRich Felker <dalias@aerifal.cx>
Sun, 5 May 2013 18:51:25 +0000 (14:51 -0400)
commitda49b872f5ef56026713855b66783c8e32570c4b
tree16d4784da229a4c9f39a84d999e806783ff9cd24
parent9293b765c4449c13fe355bcfcac1934fe3426847
fix incorrect clock tick scaling in fallback case of clock()

since CLOCKS_PER_SEC is 1000000 (required by XSI) and the times
syscall reports values in 1/100 second units (Linux), the correct
scaling factor is 10000, not 100. note that only ancient kernels which
lack clock_gettime are affected.
src/time/clock.c