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.
This commit is contained in:
Mike Barcroft 2002-08-26 02:39:03 +00:00
parent 045d6370fc
commit 091fe703a4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=102428

View file

@ -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_ */