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