Merge pull request #217 from gsnw/bug/203

Fixed wrong timestamp under Free- and OpenBSD and macOS
pull/242/head
David Schweikert 3 years ago committed by GitHub
commit f1d3615706
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -122,8 +122,11 @@ extern int h_errno;
#define CLOCKID CLOCK_REALTIME
#endif
/* CLOCK_MONTONIC starts under macOS, OpenBSD and FreeBSD with undefined positive point and can not be use
* see github PR #217
*/
#if !defined(CLOCKID)
#if defined(CLOCK_MONOTONIC)
#if defined(CLOCK_MONOTONIC) && !defined(__APPLE__) && !defined(__OpenBSD__) && !defined(__FreeBSD__)
#define CLOCKID CLOCK_MONOTONIC
#else
#define CLOCKID CLOCK_REALTIME

Loading…
Cancel
Save