From: Paul Semel <phen...@amazon.de>

Signed-off-by: Paul Semel <phen...@amazon.de>
---
 common/time.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/common/time.c b/common/time.c
index 67fe049..f75979a 100644
--- a/common/time.c
+++ b/common/time.c
@@ -125,6 +125,12 @@ static inline void spin_sleep(uint64_t t)
     nspin_sleep(nsec);
 }
 
+static inline void mspin_sleep(uint64_t t)
+{
+    uint64_t nsec = t * 1000000ul;
+    nspin_sleep(nsec);
+}
+
 /*
  * Local variables:
  * mode: C
-- 
2.16.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

Reply via email to