Commit f0746df9 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

OS/X does not have CLOCK_MONOTONIC, use CLOCK_REALTIME and hope nobody

steps the clock...

Fixes	#1022
parent bc1d749a
......@@ -58,6 +58,10 @@
#include "stevedore.h"
#include "hash_slinger.h"
#ifndef CLOCK_MONOTONIC
#define CLOCK_MONOTONIC CLOCK_REALTIME /* OS/X is silly */
#endif
static void *waiter_priv;
VTAILQ_HEAD(workerhead, worker);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment