Subversion Repositories HelenOS

Compare Revisions

No changes between revisions

Ignore whitespace Rev 2018 → Rev 2017

/trunk/kernel/arch/ia32xen/include/cycle.h
File deleted
\ No newline at end of file
Property changes:
Deleted: svn:special
-*
\ No newline at end of property
/trunk/kernel/arch/ia32xen/include/asm.h
218,6 → 218,15
return v;
}
 
static inline uint64_t rdtsc(void)
{
uint64_t v;
__asm__ volatile("rdtsc\n" : "=A" (v));
return v;
}
 
/** Return current IP address */
static inline uintptr_t * get_ip()
{