diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-07-30 19:16:29 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-07-30 19:16:29 +0000 |
commit | 46152182100e68f7f8aa4954af1bf91160bb3d15 (patch) | |
tree | d00bd52a3ae7c8472725ac6fa3656b28a22015d1 /cpu-all.h | |
parent | Arm host build fix. (diff) | |
download | qemu-kvm-46152182100e68f7f8aa4954af1bf91160bb3d15.tar.gz qemu-kvm-46152182100e68f7f8aa4954af1bf91160bb3d15.tar.bz2 qemu-kvm-46152182100e68f7f8aa4954af1bf91160bb3d15.zip |
Rewrite Arm host support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2071 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-all.h')
-rw-r--r-- | cpu-all.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -992,6 +992,15 @@ static inline int64_t cpu_get_real_ticks (void) return rval.i64; #endif } +#else +/* The host CPU doesn't have an easily accessible cycle counter. + Just return a monotonically increasing vlue. This will be totally wrong, + but hopefully better than nothing. */ +static inline int64_t cpu_get_real_ticks (void) +{ + static int64_t ticks = 0; + return ticks++; +} #endif /* profiling */ |