]> git.ipfire.org Git - thirdparty/glibc.git/commit - ChangeLog
Define CLOCKS_PER_SEC type to the type clock_t
authorH.J. Lu <hjl.tools@gmail.com>
Tue, 6 Jan 2015 12:59:13 +0000 (04:59 -0800)
committerH.J. Lu <hjl.tools@gmail.com>
Tue, 6 Jan 2015 12:59:13 +0000 (04:59 -0800)
commit57ada0e7e79b9421a77d2b92dffce0f9e8e087b5
tree194bb1f4abee3c29299c52ae825f6be8f356c43f
parent46abb64d6287d09100b147d062f6810066389b7e
Define CLOCKS_PER_SEC type to the type clock_t

C99 specifies that CLOCKS_PER_SEC is an expression with the type clock_t.
This patch adds a generic <bits/time2.h> to define CLOCKS_PER_SEC and
provides the Linux/x86-64 version of <bits/time2.h> to support x32.

[BZ #17797]
* bits/time.h (CLOCKS_PER_SEC): Changed to ((clock_t) 1000000).
* sysdeps/unix/sysv/linux/bits/time.h (CLOCKS_PER_SEC): Likewise.
* sysdeps/unix/sysv/linux/clock.c (clock): _Static_assert
CLOCKS_PER_SEC == 1000000.
* time/clocktest.c (main): Replace %ld with %jd and cast to
intmax_t.
ChangeLog
NEWS
bits/time.h
sysdeps/unix/sysv/linux/bits/time.h
sysdeps/unix/sysv/linux/clock.c
time/clocktest.c