Change 13896 by jhi@alpha on 2001/12/26 20:15:32
BeOS has times() tick of 1000000, not CLK_TCK (1000)
(this showed up in Benchmark.t)
Affected files ...
.... //depot/perl/pp_sys.c#273 edit
Differences ...
==== //depot/perl/pp_sys.c#273 (text) ====
Index: perl/pp_sys.c
--- perl/pp_sys.c.~1~ Wed Dec 26 13:30:05 2001
+++ perl/pp_sys.c Wed Dec 26 13:30:05 2001
@@ -4312,6 +4312,10 @@
it's supported. --AD 9/96.
*/
+#ifdef __BEOS__
+# define HZ 1000000
+#endif
+
#ifndef HZ
# ifdef CLK_TCK
# define HZ CLK_TCK
End of Patch.