mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
tsc: inline calls to tsc_now()
This commit is contained in:
parent
4e4b5ca95d
commit
7c6406ef7b
2 changed files with 8 additions and 9 deletions
|
@ -88,8 +88,14 @@ static inline uint64_t rdtsc()
|
|||
return tsc;
|
||||
}
|
||||
|
||||
__attribute__((unused,always_inline))
|
||||
static uint64_t tsc_now(struct tsc *t)
|
||||
{
|
||||
return t->rdtscp_supported
|
||||
? rdtscp()
|
||||
: rdtsc();
|
||||
}
|
||||
|
||||
int tsc_init(struct tsc *t);
|
||||
|
||||
uint64_t tsc_rate_to_cycles(struct tsc *t, double rate);
|
||||
|
||||
uint64_t tsc_now(struct tsc *t);
|
||||
|
|
|
@ -75,10 +75,3 @@ uint64_t tsc_rate_to_cycles(struct tsc *t, double rate)
|
|||
{
|
||||
return t->frequency / rate;
|
||||
}
|
||||
|
||||
uint64_t tsc_now(struct tsc *t)
|
||||
{
|
||||
return t->rdtscp_supported
|
||||
? rdtscp()
|
||||
: rdtsc();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue