Changeset 13830 in vbox for trunk/src/VBox/VMM/CPUM.cpp
- Timestamp:
- Nov 5, 2008 1:49:18 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r13829 r13830 634 634 * @param ppCtx Receives the CPUMCTX GC pointer when successful. 635 635 */ 636 VMMR3DECL(int) CPUMR3QueryGuestCtx GCPtr(PVM pVM, RCPTRTYPE(PCPUMCTX) *ppCtx)637 { 638 LogFlow(("CPUMR3QueryGuestCtx GCPtr\n"));636 VMMR3DECL(int) CPUMR3QueryGuestCtxRCPtr(PVM pVM, RCPTRTYPE(PCPUMCTX) *ppCtx) 637 { 638 LogFlow(("CPUMR3QueryGuestCtxRCPtr\n")); 639 639 /* 640 640 * Store the address. (Later we might check how's calling, thus the RC.) 641 641 */ 642 *ppCtx = VM_ GUEST_ADDR(pVM, &pVM->cpum.s.Guest);642 *ppCtx = VM_RC_ADDR(pVM, &pVM->cpum.s.Guest); 643 643 return VINF_SUCCESS; 644 644 }
Note:
See TracChangeset
for help on using the changeset viewer.