Use C99 types to match cfg/compiler.h without depending on it.
[bertos.git] / os / hptime.h
1 /*!
2  * \file
3  * <!--
4  * Copyright 2003, 2004 Develer S.r.l. (http://www.develer.com/)
5  * This file is part of DevLib - See README.devlib for information.
6  * -->
7  *
8  * \brief Portable abstraction for high-resolution time handling (interface)
9  *
10  * \version $Id$
11  * \author Bernardo Innocenti <bernie@develer.com>
12  */
13
14 /*#*
15  *#* $Log$
16  *#* Revision 1.6  2005/11/27 03:57:22  bernie
17  *#* Use C99 types to match cfg/compiler.h without depending on it.
18  *#*
19  *#* Revision 1.5  2005/11/04 16:20:02  bernie
20  *#* Fix reference to README.devlib in header.
21  *#*
22  *#* Revision 1.4  2004/08/25 14:12:09  rasky
23  *#* Aggiornato il comment block dei log RCS
24  *#*
25  *#* Revision 1.3  2004/08/10 05:45:04  bernie
26  *#* Fix spacing in header.
27  *#*
28  *#* Revision 1.2  2004/06/03 11:27:09  bernie
29  *#* Add dual-license information.
30  *#*
31  *#* Revision 1.1  2004/06/03 09:01:06  bernie
32  *#* Import into DevLib.
33  *#*
34  *#*/
35 #ifndef HPTIME_H
36 #define HPTIME_H
37
38 #ifdef __cplusplus
39 extern "C" {
40 #endif /* __cplusplus */
41
42 #ifdef _WIN32
43
44         /** type for time expressed in ms */
45         typedef unsigned long mtime_t;
46
47         /** our type for "high precision absolute time" */
48         typedef unsigned __int64 hptime_t;
49
50         #define HPTIME_TICKS_PER_SECOND         ((hptime_t)10000000I64)
51         #define HPTIME_TICKS_PER_MILLISEC       ((hptime_t)10000I64)
52         #define HPTIME_TICKS_PER_MICRO          ((hptime_t)10I64)
53
54 #elif defined(__unix__)
55
56         #include <stdint.h>
57
58         /** type for time expressed in ms */
59         typedef int32_t mtime_t;
60
61         /** our type for "high precision absolute time" */
62         typedef int64_t hptime_t;
63
64         #define HPTIME_TICKS_PER_SECOND         1000000LL
65         #define HPTIME_TICKS_PER_MILLISEC       1000LL
66         #define HPTIME_TICKS_PER_MICRO          1LL
67
68 #else /* !__unix__ */
69         #error OS dependent support code missing for this OS
70 #endif /* !__unix__ */
71
72 /**
73  * Return the current time with the maximum precision made available from the hosting OS
74  */
75 extern hptime_t hptime_get(void);
76
77 #ifdef __cplusplus
78 }
79 #endif /* __cplusplus */
80
81 #endif /* HPTIME_H */