Changeset 41805 in vbox
- Timestamp:
- Jun 17, 2012 5:29:20 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78623
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvNAT.cpp
r41453 r41805 197 197 } DRVNAT; 198 198 AssertCompileMemberAlignment(DRVNAT, StatNATRecvWakeups, 8); 199 /** Pointer t he NAT driver instance data. */199 /** Pointer to the NAT driver instance data. */ 200 200 typedef DRVNAT *PDRVNAT; 201 201 -
trunk/src/VBox/VMM/VMMRZ/PGMRZDynMap.cpp
r41783 r41805 304 304 typedef PGMRZDYNMAPENTRY *PPGMRZDYNMAPENTRY; 305 305 306 /** Pointer t he mapping cache instance for the current context.306 /** Pointer to the mapping cache instance for the current context. 307 307 * @sa PGMR0DYNMAP, PGMRCDYNMAP */ 308 308 typedef CTX_MID(PGM,DYNMAP) *PPGMRZDYNMAP; -
trunk/src/VBox/VMM/include/PGMInline.h
r41800 r41805 222 222 * 223 223 * @returns VINF_SUCCESS. Will bail out to ring-3 on failure. 224 * @param pVCpu The currentCPU.224 * @param pVCpu Pointer to the VMCPU. 225 225 * @param HCPhys The physical address of the page. 226 226 * @param ppv Where to store the mapping address. … … 261 261 * @returns VBox status code, see pgmRZDynMapGCPageCommon for details. 262 262 * @param pVM Pointer to the VM. 263 * @param pVCpu The currentCPU.263 * @param pVCpu Pointer to the VMCPU. 264 264 * @param GCPhys The guest physical address of the page. 265 265 * @param ppv Where to store the mapping address. … … 321 321 * 322 322 * @returns VBox status code, see pgmRZDynMapGCPageCommon for details. 323 * @param pVCpu The currentCPU.323 * @param pVCpu Pointer to the VMCPU. 324 324 * @param GCPhys The guest physical address of the page. 325 325 * @param ppv Where to store the mapping address. … … 336 336 * 337 337 * @returns VBox status code, see pgmRZDynMapGCPageCommon for details. 338 * @param pVCpu The currentCPU.338 * @param pVCpu Pointer to the VMCPU. 339 339 * @param HCPhys The physical address of the page. 340 340 * @param ppv Where to store the mapping address. The offset is … … 420 420 * @returns pointer to the mapping. 421 421 * @param pVM Pointer to the PGM instance data. 422 * @param pVCpu The currentCPU.422 * @param pVCpu Pointer to the VMCPU. 423 423 * @param pPage The page. 424 424 */ … … 542 542 * 543 543 * @returns true if it is, false if it isn't. 544 * @param pVCpu The currentCPU.544 * @param pVCpu Pointer to the VMCPU. 545 545 */ 546 546 DECL_FORCE_INLINE(bool) pgmGstIsNoExecuteActive(PVMCPU pVCpu) … … 559 559 * 560 560 * @returns true if it is, false if it isn't. 561 * @param pVCpu The currentCPU.561 * @param pVCpu Pointer to the VMCPU. 562 562 */ 563 563 DECL_FORCE_INLINE(bool) pgmGst32BitIsPageSizeExtActive(PVMCPU pVCpu) … … 591 591 * 592 592 * @returns VBox status code. 593 * @param pVCpu The currentCPU.593 * @param pVCpu Pointer to the VMCPU. 594 594 * @param ppPd Where to return the mapping. This is always set. 595 595 */ … … 615 615 * Gets the address the guest page directory (32-bit paging). 616 616 * 617 * @returns Pointer t he page directory entry in question.618 * @param pVCpu The currentCPU.617 * @returns Pointer to the page directory entry in question. 618 * @param pVCpu Pointer to the VMCPU. 619 619 */ 620 620 DECLINLINE(PX86PD) pgmGstGet32bitPDPtr(PVMCPU pVCpu) … … 645 645 * 646 646 * @returns VBox status code. 647 * @param pVCpu The currentCPU.647 * @param pVCpu Pointer to the VMCPU. 648 648 * @param ppPdpt Where to return the mapping. This is always set. 649 649 */ … … 671 671 * @returns Pointer to the page directory in question. 672 672 * @returns NULL if the page directory is not present or on an invalid page. 673 * @param pVCpu The currentCPU.673 * @param pVCpu Pointer to the VMCPU. 674 674 */ 675 675 DECLINLINE(PX86PDPT) pgmGstGetPaePDPTPtr(PVMCPU pVCpu) … … 687 687 * @returns Pointer to the page directory in question. 688 688 * @returns NULL if the page directory is not present or on an invalid page. 689 * @param pVCpu The current CPU689 * @param pVCpu Pointer to the VMCPU. 690 690 * @param GCPtr The address. 691 691 */ … … 761 761 * @returns Pointer to the page directory in question. 762 762 * @returns NULL if the page directory is not present or on an invalid page. 763 * @param pVCpu The currentCPU.763 * @param pVCpu Pointer to the VMCPU. 764 764 * @param GCPtr The address. 765 765 * @param piPD Receives the index into the returned page directory … … 811 811 * 812 812 * @returns VBox status code. 813 * @param pVCpu The currentCPU.813 * @param pVCpu Pointer to the VMCPU. 814 814 * @param ppPml4 Where to return the mapping. Always set. 815 815 */ … … 836 836 * 837 837 * @returns Pointer to the PML4 page. 838 * @param pVCpu The currentCPU.838 * @param pVCpu Pointer to the VMCPU. 839 839 */ 840 840 DECLINLINE(PX86PML4) pgmGstGetLongModePML4Ptr(PVMCPU pVCpu) … … 851 851 * 852 852 * @returns Pointer to the PML4 entry. 853 * @param pVCpu The currentCPU.853 * @param pVCpu Pointer to the VMCPU. 854 854 * @param iPml4 The index. 855 855 * @remarks Only used by AssertCR3. … … 878 878 * @returns The page directory entry in question. 879 879 * @returns A non-present entry if the page directory is not present or on an invalid page. 880 * @param pVCpu The currentCPU.880 * @param pVCpu Pointer to the VMCPU. 881 881 * @param GCPtr The address. 882 882 */ … … 924 924 * @returns The page directory in question. 925 925 * @returns NULL if the page directory is not present or on an invalid page. 926 * @param pVCpu The currentCPU.926 * @param pVCpu Pointer to the VMCPU. 927 927 * @param GCPtr The address. 928 928 * @param ppPml4e Page Map Level-4 Entry (out) … … 977 977 * 978 978 * @returns Pointer to the shadow 32-bit PD. 979 * @param pVCpu The currentCPU.979 * @param pVCpu Pointer to the VMCPU. 980 980 */ 981 981 DECLINLINE(PX86PD) pgmShwGet32BitPDPtr(PVMCPU pVCpu) … … 989 989 * 990 990 * @returns Shadow 32-bit PDE. 991 * @param pVCpu The currentCPU.991 * @param pVCpu Pointer to the VMCPU. 992 992 * @param GCPtr The address. 993 993 */ … … 1011 1011 * 1012 1012 * @returns Pointer to the shadow 32-bit PDE. 1013 * @param pVCpu The currentCPU.1013 * @param pVCpu Pointer to the VMCPU. 1014 1014 * @param GCPtr The address. 1015 1015 */ … … 1028 1028 * 1029 1029 * @returns Pointer to the shadow PAE PDPT. 1030 * @param pVCpu The currentCPU.1030 * @param pVCpu Pointer to the VMCPU. 1031 1031 */ 1032 1032 DECLINLINE(PX86PDPT) pgmShwGetPaePDPTPtr(PVMCPU pVCpu) … … 1040 1040 * 1041 1041 * @returns Pointer to the shadow PD. 1042 * @param pVCpu The currentCPU.1042 * @param pVCpu Pointer to the VMCPU. 1043 1043 * @param GCPtr The address. 1044 1044 */ … … 1064 1064 * 1065 1065 * @returns Pointer to the shadow PD. 1066 * @param pVCpu The currentCPU.1066 * @param pVCpu Pointer to the VMCPU. 1067 1067 * @param GCPtr The address. 1068 1068 */ … … 1087 1087 * 1088 1088 * @returns PDE. 1089 * @param pVCpu The currentCPU.1089 * @param pVCpu Pointer to the VMCPU. 1090 1090 * @param GCPtr The address. 1091 1091 */ … … 1108 1108 * 1109 1109 * @returns Pointer to the PDE. 1110 * @param pVCpu The currentCPU.1110 * @param pVCpu Pointer to the VMCPU. 1111 1111 * @param GCPtr The address. 1112 1112 * @remarks Only used by AssertCR3. … … 1127 1127 * 1128 1128 * @returns Pointer to the shadow PML4. 1129 * @param pVCpu The currentCPU.1129 * @param pVCpu Pointer to the VMCPU. 1130 1130 */ 1131 1131 DECLINLINE(PX86PML4) pgmShwGetLongModePML4Ptr(PVMCPU pVCpu) … … 1139 1139 * 1140 1140 * @returns The entry. 1141 * @param pVCpu The currentCPU.1141 * @param pVCpu Pointer to the VMCPU. 1142 1142 * @param GCPtr The address. 1143 1143 */ … … 1160 1160 * 1161 1161 * @returns The entry. 1162 * @param pVCpu The currentCPU.1162 * @param pVCpu Pointer to the VMCPU. 1163 1163 * @param iPml4 The PML4 index. 1164 1164 */
Note:
See TracChangeset
for help on using the changeset viewer.