From 7ae63a517fb50fe32b8ce88bfc18a1a1ed056189 Mon Sep 17 00:00:00 2001 From: Brad Date: Mon, 20 Dec 2010 21:24:32 -0500 Subject: [PATCH] Add OpenBSD to ifdef list since it has CLOCK_MONOTONIC. Signed-off-by: Brad Smith Signed-off-by: Blue Swirl --- qemu-timer-common.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qemu-timer-common.c b/qemu-timer-common.c index fff43996d8..755e300bc9 100644 --- a/qemu-timer-common.c +++ b/qemu-timer-common.c @@ -50,7 +50,8 @@ static void __attribute__((constructor)) init_get_clock(void) { use_rt_clock = 0; #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \ - || defined(__DragonFly__) || defined(__FreeBSD_kernel__) + || defined(__DragonFly__) || defined(__FreeBSD_kernel__) \ + || defined(__OpenBSD__) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) { -- 2.11.4.GIT