From 091fe703a4b8500c428a980f23412b61936b8957 Mon Sep 17 00:00:00 2001 From: Mike Barcroft Date: Mon, 26 Aug 2002 02:39:03 +0000 Subject: [PATCH] Fix a long-standing bug on alpha: Change _BSD_CLK_TCK_ and _BSD_CLOCKS_PER_SEC_ to match stathz. This should result in bug for bug compatibility in staticly linked programs and dynamicly linked programs should see an immediate correction. --- sys/alpha/include/ansi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/alpha/include/ansi.h b/sys/alpha/include/ansi.h index 11dbf035602e..aaf1fd4caad1 100644 --- a/sys/alpha/include/ansi.h +++ b/sys/alpha/include/ansi.h @@ -48,7 +48,7 @@ * to hold the required 24 hours worth of ticks if the frequency is * 1000000ul, and ``unsigned long long'' would be nonstandard). */ -#define _BSD_CLK_TCK_ 100 -#define _BSD_CLOCKS_PER_SEC_ 100 +#define _BSD_CLK_TCK_ 128 +#define _BSD_CLOCKS_PER_SEC_ 128 #endif /* !_MACHINE_ANSI_H_ */