Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2355 → Rev 2356

/branches/arm/kernel/arch/arm32/include/cycle.h
30,17 → 30,20
* @{
*/
/** @file
* @brief Count of CPU cycles.
*/
 
#ifndef KERN_arm32_CYCLE_H_
#define KERN_arm32_CYCLE_H_
 
 
/** No such instruction on ARM to get count of cycles. */
static inline uint64_t get_cycle(void)
{
// no such instruction on ARM to get count of cycles
return 0;
}
 
 
#endif
 
/** @}