Port to MacOSX.
[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.8  2006/02/20 01:46:46  bernie
17  *#* Port to MacOSX.
18  *#*
19  *#* Revision 1.7  2006/01/16 03:28:25  bernie
20  *#* Remove redundant mtime_t definition (cfg/compiler.h has one already).
21  *#*
22  *#* Revision 1.6  2005/11/27 03:57:22  bernie
23  *#* Use C99 types to match cfg/compiler.h without depending on it.
24  *#*
25  *#* Revision 1.5  2005/11/04 16:20:02  bernie
26  *#* Fix reference to README.devlib in header.
27  *#*
28  *#* Revision 1.4  2004/08/25 14:12:09  rasky
29  *#* Aggiornato il comment block dei log RCS
30  *#*
31  *#* Revision 1.3  2004/08/10 05:45:04  bernie
32  *#* Fix spacing in header.
33  *#*
34  *#* Revision 1.2  2004/06/03 11:27:09  bernie
35  *#* Add dual-license information.
36  *#*
37  *#* Revision 1.1  2004/06/03 09:01:06  bernie
38  *#* Import into DevLib.
39  *#*
40  *#*/
41 #ifndef HPTIME_H
42 #define HPTIME_H
43
44 #ifdef __cplusplus
45 extern "C" {
46 #endif /* __cplusplus */
47
48 #ifdef _WIN32
49
50         /** our type for "high precision absolute time" */
51         typedef __int64 hptime_t;
52
53         #define HPTIME_TICKS_PER_SECOND         ((hptime_t)10000000I64)
54         #define HPTIME_TICKS_PER_MILLISEC       ((hptime_t)10000I64)
55         #define HPTIME_TICKS_PER_MICRO          ((hptime_t)10I64)
56
57 #elif defined(__unix__) || (defined(__APPLE__) && defined(__MACH__))
58
59         #include <stdint.h>
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 */