Don't use HZ -- use sysconf(_SC_CLK_TCK)
This commit is contained in:
parent
c2843563f3
commit
496411b489
1 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include <arpa/inet.h>
|
||||
|
||||
#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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue