diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-04 13:53:05 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-04 13:53:05 +0000 |
commit | 914178d34b08a1bc9b274ea97d332cf4d16f4009 (patch) | |
tree | c0476a3a71b520f8fa567a1fb2ee6401238df53a /target-i386/helper.h | |
parent | 5efc27bbb695017a7386cb9acef247b9dd29f2b6 (diff) |
32 bit SVM fixes - INVLPG and INVLPGA updates
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4660 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/helper.h')
-rw-r--r-- | target-i386/helper.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target-i386/helper.h b/target-i386/helper.h index 3fd99d2673..c6b6268957 100644 --- a/target-i386/helper.h +++ b/target-i386/helper.h @@ -102,14 +102,14 @@ DEF_HELPER(void, helper_svm_check_intercept_param, (uint32_t type, uint64_t para DEF_HELPER(void, helper_vmexit, (uint32_t exit_code, uint64_t exit_info_1)) DEF_HELPER(void, helper_svm_check_io, (uint32_t port, uint32_t param, uint32_t next_eip_addend)) -DEF_HELPER(void, helper_vmrun, (void)) +DEF_HELPER(void, helper_vmrun, (int aflag)) DEF_HELPER(void, helper_vmmcall, (void)) -DEF_HELPER(void, helper_vmload, (void)) -DEF_HELPER(void, helper_vmsave, (void)) +DEF_HELPER(void, helper_vmload, (int aflag)) +DEF_HELPER(void, helper_vmsave, (int aflag)) DEF_HELPER(void, helper_stgi, (void)) DEF_HELPER(void, helper_clgi, (void)) DEF_HELPER(void, helper_skinit, (void)) -DEF_HELPER(void, helper_invlpga, (void)) +DEF_HELPER(void, helper_invlpga, (int aflag)) /* x86 FPU */ |