repo.or.cz
/
charm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Route ampif77 and ampif90 through ampiCC, factoring out duplicated code
[charm.git]
/
src
/
conv-core
/
hrctimer.h
blob
1f1bae4f9121990415cb72e83366300806d92807
1
#ifndef HRCTIMER_H
2
#define HRCTIMER_H
3
4
#ifndef __STDC_FORMAT_MACROS
5
# define __STDC_FORMAT_MACROS
6
#endif
7
#ifndef __STDC_LIMIT_MACROS
8
# define __STDC_LIMIT_MACROS
9
#endif
10
#include <inttypes.h>
11
12
#ifdef __cplusplus
13
extern
"C"
{
14
#endif
15
16
double
inithrc
(
void
);
17
double
gethrctime
(
void
);
18
uint64_t
gethrctime_micro
(
void
);
19
20
#ifdef __cplusplus
21
}
22
#endif
23
24
#endif