Remove cast-as-lvalue extension abuse
[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 devlib/README 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.2  2004/06/03 11:27:09  bernie
17  * Add dual-license information.
18  *
19  * Revision 1.1  2004/06/03 09:01:06  bernie
20  * Import into DevLib.
21  *
22  */
23 #ifndef HPTIME_H
24 #define HPTIME_H
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif /* __cplusplus */
29
30 #ifdef _WIN32
31
32         /* type for time expressed in ms */
33         typedef unsigned long mtime_t;
34
35         /* our type for "high precision absolute time" */
36         typedef unsigned __int64 hptime_t;
37
38         #define HPTIME_TICKS_PER_SECOND         ((hptime_t)10000000I64)
39         #define HPTIME_TICKS_PER_MILLISEC       ((hptime_t)10000I64)
40         #define HPTIME_TICKS_PER_MICRO          ((hptime_t)10I64)
41
42 #elif defined(__unix__)
43
44         /* type for time expressed in ms */
45         typedef long mtime_t;
46
47         /* our type for "high precision absolute time" */
48         typedef long long hptime_t;
49
50         #define HPTIME_TICKS_PER_SECOND         ((hptime_t)1000000LL)
51         #define HPTIME_TICKS_PER_MILLISEC       ((hptime_t)1000LL)
52         #define HPTIME_TICKS_PER_MICRO          ((hptime_t)1LL)
53
54 #else /* !__unix__ */
55         #error OS dependent support code missing for this OS
56 #endif /* !__unix__ */
57
58 /*!
59  * Return the current time with the maximum precision made available from the hosting OS
60  */
61 extern hptime_t hptime_get(void);
62
63 #ifdef __cplusplus
64 }
65 #endif /* __cplusplus */
66
67 #endif /* HPTIME_H */