This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Define CLOCKS_PER_SEC type to the type clock_t


On Mon, Jan 5, 2015 at 2:32 PM, Paul Eggert <eggert@cs.ucla.edu> wrote:
> On 01/05/2015 12:46 PM, H.J. Lu wrote:
>>
>> C99 specifies that CLOCKS_PER_SEC is a constant expression
>
>
> A minor point (mostly for comments): CLOCKS_PER_SEC needn't be a constant
> expression.  Even POSIX doesn't require that: on the contrary, it explicitly
> warns you that it might not be a constant expression, even though it must
> evaluate to 1000000.
>
>> +       * bits/time2.h: New file.
>> +       * sysdeps/unix/sysv/linux/x86/bits/time2.h: Likewise.
>
>
> Wouldn't it be simpler and clearer to replace "# define CLOCKS_PER_SEC
> 1000000l" with "# define CLOCKS_PER_SEC ((clock_t) 1000000)"?  That way, one
> wouldn't need all these other little files running around.

My copy of C99 has

---
      CLOCKS_PER_SEC

which expands to a constant expression with type clock_t (described below)
that is the number per second of the value returned by the clock function.
---

Has it been changed?


-- 
H.J.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]