diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-09-24 18:48:23 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-09-24 18:48:23 +0000 |
commit | 02a1602e62a7edc010130bc58f1be7ec1669af06 (patch) | |
tree | 861d4e84c0d53a31414b8601bbdf9844eb9683ec /linux-user | |
parent | a5954d5c34502ebeaae95b8719a734066f596f1e (diff) | |
download | qemu-02a1602e62a7edc010130bc58f1be7ec1669af06.zip |
added cpu_smm_update()
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2173 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index d1693110fa..42f4a03506 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -122,6 +122,10 @@ int64_t cpu_get_real_ticks(void) /***********************************************************/ /* CPUX86 core interface */ +void cpu_smm_update(CPUState *env) +{ +} + uint64_t cpu_get_tsc(CPUX86State *env) { return cpu_get_real_ticks(); |