Change CLK_TCK to CLOCKS_PER_SEC. (CLK_TCK is a deprecated POSIX feature

and is not necessarily related to the ANSI CLOCKS_PER_SEC).

Parenthesize macro args.
This commit is contained in:
Bruce Evans 1995-02-03 21:59:45 +00:00
parent 6231933da9
commit 3652b5c25d

View File

@ -40,10 +40,11 @@ static char sccsid[] = "@(#)clock.c 8.1 (Berkeley) 6/4/93";
#include <sys/resource.h>
/*
* Convert usec to clock ticks; could do (usec * CLK_TCK) / 1000000,
* Convert usec to clock ticks; could do (usec * CLOCKS_PER_SEC) / 1000000,
* but this would overflow if we switch to nanosec.
*/
#define CONVTCK(r) (r.tv_sec * CLK_TCK + r.tv_usec / (1000000 / CLK_TCK))
#define CONVTCK(r) ((r).tv_sec * CLOCKS_PER_SEC \
+ (r).tv_usec / (1000000 / CLOCKS_PER_SEC))
clock_t
clock()