Changeset 60311 in vbox for trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-paging.h
- Timestamp:
- Apr 4, 2016 5:01:14 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-paging.h
r60231 r60311 5 5 6 6 /* 7 * Copyright (C) 2007-201 5Oracle Corporation7 * Copyright (C) 2007-2016 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 35 35 /** Root directory for page protected mode. 36 36 * UINT32_MAX if not initialized. */ 37 extern uint32_t BS3_DATA_NM(g_PhysPagingRootPP); 37 #ifndef DOXYGEN_RUNNING 38 # define g_PhysPagingRootPP BS3_DATA_NM(g_PhysPagingRootPP) 39 #endif 40 extern uint32_t g_PhysPagingRootPP; 38 41 /** Root directory pointer table for PAE mode. 39 42 * UINT32_MAX if not initialized. */ 40 extern uint32_t BS3_DATA_NM(g_PhysPagingRootPAE); 43 #ifndef DOXYGEN_RUNNING 44 # define g_PhysPagingRootPAE BS3_DATA_NM(g_PhysPagingRootPAE) 45 #endif 46 extern uint32_t g_PhysPagingRootPAE; 41 47 /** Root table (level 4) for long mode. 42 48 * UINT32_MAX if not initialized. */ 43 extern uint32_t BS3_DATA_NM(g_PhysPagingRootLM); 49 #ifndef DOXYGEN_RUNNING 50 # define g_PhysPagingRootLM BS3_DATA_NM(g_PhysPagingRootLM) 51 #endif 52 extern uint32_t g_PhysPagingRootLM; 44 53 45 54 RT_C_DECLS_END;
Note:
See TracChangeset
for help on using the changeset viewer.