Changeset 13832 for trunk/include/VBox/mm.h
- Timestamp:
- 11/05/08 03:01:12 (2 months ago)
- Files:
-
- trunk/include/VBox/mm.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/include/VBox/mm.h
r13827 r13832 238 238 239 239 240 #ifndef IN_ GC240 #ifndef IN_RC 241 241 VMMDECL(void *) MMHyperRCToCC(PVM pVM, RTRCPTR RCPtr); 242 242 #else … … 268 268 #endif 269 269 270 #ifndef IN_ GC270 #ifndef IN_RC 271 271 VMMDECL(RTRCPTR) MMHyperCCToRC(PVM pVM, void *pv); 272 272 #else … … 299 299 /** @def MMHYPER_RC_ASSERT_RCPTR 300 300 * Asserts that an address is either NULL or inside the hypervisor memory area. 301 * This assertion only works while IN_ GC, it's a NOP everywhere else.301 * This assertion only works while IN_RC, it's a NOP everywhere else. 302 302 * @thread The Emulation Thread. 303 303 */ 304 #ifdef IN_ GC304 #ifdef IN_RC 305 305 # define MMHYPER_RC_ASSERT_RCPTR(pVM, RCPtr) Assert(MMHyperIsInsideArea((pVM), (RTRCUINTPTR)(RCPtr)) || !(RCPtr)) 306 306 #else … … 405 405 406 406 407 #ifdef IN_ GC407 #ifdef IN_RC 408 408 /** @defgroup grp_mm_gc The MM Guest Context API 409 409 * @ingroup grp_mm … … 419 419 420 420 /** @} */ 421 #endif /* IN_ GC */421 #endif /* IN_RC */ 422 422 423 423 /** @} */

