Changeset 41783 in vbox for trunk/src/VBox/VMM/include/PGMInternal.h
- Timestamp:
- Jun 16, 2012 7:24:15 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78601
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PGMInternal.h
r41774 r41783 221 221 * 222 222 * @returns VBox status code. 223 * @param pVM The VM handle.223 * @param pVM Pointer to the VM. 224 224 * @param pVCpu The current CPU. 225 225 * @param HCPhys The HC physical address to map to a virtual one. … … 243 243 * 244 244 * @returns VBox status code. 245 * @param pVM The VM handle.245 * @param pVM Pointer to the VM. 246 246 * @param pVCpu The current CPU. 247 247 * @param GCPhys The GC physical address to map to a virtual one. … … 264 264 * 265 265 * @returns VBox status code. 266 * @param pVM The VM handle.266 * @param pVM Pointer to the VM. 267 267 * @param GCPhys The GC physical address to map to a virtual one. 268 268 * @param ppv Where to store the virtual address. No need to cast this. … … 292 292 * 293 293 * @returns VBox status code. 294 * @param pVM The VM handle.294 * @param pVM Pointer to the VM. 295 295 * @param GCPhys The GC physical address to map to a virtual one. 296 296 * @param ppv Where to store the virtual address. No need to cast this. … … 333 333 * For best effect only apply this to the page that was mapped most recently. 334 334 * 335 * @param pVM The VM handle.335 * @param pVM Pointer to the VM. 336 336 * @param pvPage The pool page. 337 337 */ … … 356 356 * Invalidates a page on all VCPUs 357 357 * 358 * @param pVM The VM handle.358 * @param pVM Pointer to the VM. 359 359 * @param GCVirt The virtual address of the page to invalidate. 360 360 */ … … 397 397 * Invalidates the TLBs of all VCPUs 398 398 * 399 * @param pVM The VM handle.399 * @param pVM Pointer to the VM. 400 400 */ 401 401 #ifdef IN_RC … … 2436 2436 * 2437 2437 * @returns VBox status code. 2438 * @param a_pVM The VM handle.2438 * @param a_pVM Pointer to the VM. 2439 2439 * @param a_pPage The pool page. 2440 2440 * … … 2461 2461 * 2462 2462 * @returns VBox status code. 2463 * @param a_pVM The VM handle.2463 * @param a_pVM Pointer to the VM. 2464 2464 * @param a_pVCpu The current CPU. 2465 2465 * @param a_pPage The pool page. … … 3891 3891 * Asserts that the caller owns the PDM lock. 3892 3892 * This is the internal variant of PGMIsLockOwner. 3893 * @param a_pVM The VM handle.3893 * @param a_pVM Pointer to the VM. 3894 3894 */ 3895 3895 #define PGM_LOCK_ASSERT_OWNER(a_pVM) Assert(PDMCritSectIsOwner(&(a_pVM)->pgm.s.CritSectX)) … … 3897 3897 * Asserts that the caller owns the PDM lock. 3898 3898 * This is the internal variant of PGMIsLockOwner. 3899 * @param a_pVM The VM handle.3899 * @param a_pVM Pointer to the VM. 3900 3900 * @param a_pVCpu The current CPU handle. 3901 3901 */
Note:
See TracChangeset
for help on using the changeset viewer.