]> git.proxmox.com Git - qemu.git/commitdiff
Allow clock_gettime() monotonic clock to be utilized on more OS's
authorBrad Smith <brad@comstyle.com>
Fri, 5 Apr 2013 00:37:53 +0000 (20:37 -0400)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Sat, 6 Apr 2013 21:38:15 +0000 (16:38 -0500)
Allow the clock_gettime() code using monotonic clock to be utilized on
more POSIX compliannt OS's. This started as a fix for OpenBSD which was
listed in one function as part of the previous hard coded list of OS's
for the functions to support but not in the other.

Signed-off-by: Brad Smith <brad@comstyle.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 20130405003748.GH884@rox.home.comstyle.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
(cherry picked from commit d05ef160453e98546a4197496dc8a3cb2defac53)

Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
include/qemu/timer.h
util/qemu-timer-common.c

index 1766b2d6c769b512e30048c560429bad017dd3e5..c363190fcae4c2f5149a96f5ae517edd31eebeee 100644 (file)
@@ -117,8 +117,7 @@ extern int use_rt_clock;
 
 static inline int64_t get_clock(void)
 {
-#if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
-    || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
+#ifdef CLOCK_MONOTONIC
     if (use_rt_clock) {
         struct timespec ts;
         clock_gettime(CLOCK_MONOTONIC, &ts);
index 16f5e758b21f642b02273f41735c147a83561b75..95e0847c76f3b88ee713f19f119134093a0454da 100644 (file)
@@ -49,9 +49,7 @@ int use_rt_clock;
 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(__OpenBSD__)
+#ifdef CLOCK_MONOTONIC
     {
         struct timespec ts;
         if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) {