diff options
Diffstat (limited to 'nacl/cpucycles/cortex.h')
-rw-r--r-- | nacl/cpucycles/cortex.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/nacl/cpucycles/cortex.h b/nacl/cpucycles/cortex.h new file mode 100644 index 00000000..e622f132 --- /dev/null +++ b/nacl/cpucycles/cortex.h | |||
@@ -0,0 +1,27 @@ | |||
1 | /* | ||
2 | cpucycles cortex.h version 20100912 | ||
3 | D. J. Bernstein | ||
4 | Public domain. | ||
5 | */ | ||
6 | |||
7 | #ifndef CPUCYCLES_cortex_h | ||
8 | #define CPUCYCLES_cortex_h | ||
9 | |||
10 | #ifdef __cplusplus | ||
11 | extern "C" { | ||
12 | #endif | ||
13 | |||
14 | extern long long cpucycles_cortex(void); | ||
15 | extern long long cpucycles_cortex_persecond(void); | ||
16 | |||
17 | #ifdef __cplusplus | ||
18 | } | ||
19 | #endif | ||
20 | |||
21 | #ifndef cpucycles_implementation | ||
22 | #define cpucycles_implementation "cortex" | ||
23 | #define cpucycles cpucycles_cortex | ||
24 | #define cpucycles_persecond cpucycles_cortex_persecond | ||
25 | #endif | ||
26 | |||
27 | #endif | ||