Fix reference to README.devlib in header.
[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.5  2005/11/04 16:20:02  bernie
17  *#* Fix reference to README.devlib in header.
18  *#*
19  *#* Revision 1.4  2004/08/25 14:12:09  rasky
20  *#* Aggiornato il comment block dei log RCS
21  *#*
22  *#* Revision 1.3  2004/08/10 05:45:04  bernie
23  *#* Fix spacing in header.
24  *#*
25  *#* Revision 1.2  2004/06/03 11:27:09  bernie
26  *#* Add dual-license information.
27  *#*
28  *#* Revision 1.1  2004/06/03 09:01:06  bernie
29  *#* Import into DevLib.
30  *#*
31  *#*/
32 #ifndef HPTIME_H
33 #define HPTIME_H
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif /* __cplusplus */
38
39 #ifdef _WIN32
40
41         /* type for time expressed in ms */
42         typedef unsigned long mtime_t;
43
44         /* our type for "high precision absolute time" */
45         typedef unsigned __int64 hptime_t;
46
47         #define HPTIME_TICKS_PER_SECOND         ((hptime_t)10000000I64)
48         #define HPTIME_TICKS_PER_MILLISEC       ((hptime_t)10000I64)
49         #define HPTIME_TICKS_PER_MICRO          ((hptime_t)10I64)
50
51 #elif defined(__unix__)
52
53         /* type for time expressed in ms */
54         typedef long mtime_t;
55
56         /* our type for "high precision absolute time" */
57         typedef long long hptime_t;
58
59         #define HPTIME_TICKS_PER_SECOND         ((hptime_t)1000000LL)
60         #define HPTIME_TICKS_PER_MILLISEC       ((hptime_t)1000LL)
61         #define HPTIME_TICKS_PER_MICRO          ((hptime_t)1LL)
62
63 #else /* !__unix__ */
64         #error OS dependent support code missing for this OS
65 #endif /* !__unix__ */
66
67 /*!
68  * Return the current time with the maximum precision made available from the hosting OS
69  */
70 extern hptime_t hptime_get(void);
71
72 #ifdef __cplusplus
73 }
74 #endif /* __cplusplus */
75
76 #endif /* HPTIME_H */