mirror of
https://github.com/sheumann/hush.git
synced 2024-12-27 01:32:08 +00:00
Don't use HZ -- use sysconf(_SC_CLK_TCK)
This commit is contained in:
parent
c2843563f3
commit
496411b489
@ -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…
Reference in New Issue
Block a user