From 496411b4891f8e7e3286ba36cd3aff5438b5f71d Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 12 Feb 2003 10:56:53 +0000 Subject: [PATCH] Don't use HZ -- use sysconf(_SC_CLK_TCK) --- networking/libiproute/utils.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/networking/libiproute/utils.c b/networking/libiproute/utils.c index 63084e1..2c23cd2 100644 --- a/networking/libiproute/utils.c +++ b/networking/libiproute/utils.c @@ -16,6 +16,7 @@ #include #include +#include #include #include "utils.h" @@ -316,7 +317,7 @@ int __get_hz(void) } if (hz) return hz; - return HZ; + return sysconf(_SC_CLK_TCK); } const char *rt_addr_n2a(int af, int len, void *addr, char *buf, int buflen) -- 2.7.4