Remove redundant mtime_t definition (cfg/compiler.h has one already).
[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.7  2006/01/16 03:28:25  bernie
17  *#* Remove redundant mtime_t definition (cfg/compiler.h has one already).
18  *#*
19  *#* Revision 1.6  2005/11/27 03:57:22  bernie
20  *#* Use C99 types to match cfg/compiler.h without depending on it.
21  *#*
22  *#* Revision 1.5  2005/11/04 16:20:02  bernie
23  *#* Fix reference to README.devlib in header.
24  *#*
25  *#* Revision 1.4  2004/08/25 14:12:09  rasky
26  *#* Aggiornato il comment block dei log RCS
27  *#*
28  *#* Revision 1.3  2004/08/10 05:45:04  bernie
29  *#* Fix spacing in header.
30  *#*
31  *#* Revision 1.2  2004/06/03 11:27:09  bernie
32  *#* Add dual-license information.
33  *#*
34  *#* Revision 1.1  2004/06/03 09:01:06  bernie
35  *#* Import into DevLib.
36  *#*
37  *#*/
38 #ifndef HPTIME_H
39 #define HPTIME_H
40
41 #ifdef __cplusplus
42 extern "C" {
43 #endif /* __cplusplus */
44
45 #ifdef _WIN32
46
47         /** our type for "high precision absolute time" */
48         typedef __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         /** our type for "high precision absolute time" */
59         typedef int64_t hptime_t;
60
61         #define HPTIME_TICKS_PER_SECOND         1000000LL
62         #define HPTIME_TICKS_PER_MILLISEC       1000LL
63         #define HPTIME_TICKS_PER_MICRO          1LL
64
65 #else /* !__unix__ */
66         #error OS dependent support code missing for this OS
67 #endif /* !__unix__ */
68
69 /**
70  * Return the current time with the maximum precision made available from the hosting OS
71  */
72 extern hptime_t hptime_get(void);
73
74 #ifdef __cplusplus
75 }
76 #endif /* __cplusplus */
77
78 #endif /* HPTIME_H */