[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 7/7] add sleep, msleep and NOW() macros to time manager
From: Paul Semel <phentex@xxxxxxxxx> Signed-off-by: Paul Semel <phentex@xxxxxxxxx> cr https://code.amazon.com/reviews/CR-786228 --- common/time.c | 18 ++++++++++++++++++ include/xtf/time.h | 16 ++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/common/time.c b/common/time.c index 7577694..2bd4e7f 100644 --- a/common/time.c +++ b/common/time.c @@ -152,6 +152,24 @@ static inline void mspin_sleep(uint64_t t) nspin_sleep(nsec); } +#if defined(__i386__) +void sleep(uint32_t t) +#else +void sleep(uint64_t t) +#endif +{ + spin_sleep(t); +} + +#if defined(__i386__) +void msleep(uint32_t t) +#else +void msleep(uint64_t t) +#endif +{ + mspin_sleep(t); +} + /* * Local variables: * mode: C diff --git a/include/xtf/time.h b/include/xtf/time.h index 16356eb..252263a 100644 --- a/include/xtf/time.h +++ b/include/xtf/time.h @@ -30,14 +30,30 @@ struct timeval { uint32_t since_boot_time(void); uint32_t current_time(void); + +/* This function takes seconds in parameter */ +void sleep(uint32_t f); + +/* Be careful, this function takes milliseconds in parameter, + * not microseconds ! + */ +void msleep(uint32_t f); #else uint64_t since_boot_time(void); uint64_t current_time(void); + +void sleep(uint64_t f); + +void msleep(uint64_t f); #endif int gettimeofday(struct timeval *tp); + +/* This returns the current epoch time */ +#define NOW() current_time() + #endif /* XTF_TIME_H */ /* -- 2.16.2 Amazon Development Center Germany GmbH Berlin - Dresden - Aachen main office: Krausenstr. 38, 10117 Berlin Geschaeftsfuehrer: Dr. Ralf Herbrich, Christian Schlaeger Ust-ID: DE289237879 Eingetragen am Amtsgericht Charlottenburg HRB 149173 B _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |