X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=os%2Fhptime.h;h=7e5b88a0022d53fa8faa9259eb715d40a07c0fd3;hb=faf2f6bfd5933ff75e6cc01e3d48f9277f731d8f;hp=2b27b6ef930d6b93fa6dbe99fd4a43c5dc4812ea;hpb=660dbab0d8c8010a42a4f336f87ff362fd7eb457;p=bertos.git diff --git a/os/hptime.h b/os/hptime.h old mode 100755 new mode 100644 index 2b27b6ef..7e5b88a0 --- a/os/hptime.h +++ b/os/hptime.h @@ -1,13 +1,37 @@ /** * \file * * * \brief Portable abstraction for high-resolution time handling (interface) * - * \version $Id$ * \author Bernardo Innocenti */ #ifndef HPTIME_H @@ -22,20 +46,27 @@ extern "C" { /** our type for "high precision absolute time" */ typedef __int64 hptime_t; - #define HPTIME_TICKS_PER_SECOND ((hptime_t)10000000I64) - #define HPTIME_TICKS_PER_MILLISEC ((hptime_t)10000I64) - #define HPTIME_TICKS_PER_MICRO ((hptime_t)10I64) + #define HPTIME_TICKS_PER_SECOND (10000000I64) + #define HPTIME_TICKS_PER_MILLISEC (10000I64) + #define HPTIME_TICKS_PER_MICRO (10I64) #elif defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) #include /* int64_t */ + #ifndef DEVLIB_MTIME_DEFINED + #define DEVLIB_MTIME_DEFINED 1 /* Resolve conflict with */ + typedef int32_t mtime_t; + #define SIZEOF_MTIME_T (32 / CPU_BITS_PER_CHAR) + #define MTIME_INFINITE 0x7FFFFFFFL + #endif + /** Type for "high precision absolute time". */ typedef int64_t hptime_t; - #define HPTIME_TICKS_PER_SECOND ((hptime_t)1000000LL) - #define HPTIME_TICKS_PER_MILLISEC ((hptime_t)1000LL) - #define HPTIME_TICKS_PER_MICRO ((hptime_t)1LL) + #define HPTIME_TICKS_PER_SECOND (1000000LL) + #define HPTIME_TICKS_PER_MILLISEC (1000LL) + #define HPTIME_TICKS_PER_MICRO (1LL) #else /* !__unix__ */ #error OS dependent support code missing for this OS