Subversion Repositories HelenOS

Rev

Rev 2356 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2356 Rev 2412
Line 35... Line 35...
35
 
35
 
36
#ifndef KERN_arm32_CYCLE_H_
36
#ifndef KERN_arm32_CYCLE_H_
37
#define KERN_arm32_CYCLE_H_
37
#define KERN_arm32_CYCLE_H_
38
 
38
 
39
 
39
 
-
 
40
/** Returns count of CPU cycles.
-
 
41
 *
40
/** No such instruction on ARM to get count of cycles. */
42
 *  No such instruction on ARM to get count of cycles.
-
 
43
 *
-
 
44
 *  @return Count of CPU cycles.
-
 
45
 */
41
static inline uint64_t get_cycle(void)
46
static inline uint64_t get_cycle(void)
42
{
47
{
43
    return 0;
48
    return 0;
44
}
49
}
45
 
50