Changeset 36988 in vbox
- Timestamp:
- May 6, 2011 3:59:27 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/GVMMR0.cpp
r36235 r36988 100 100 /** Our own index / handle value. */ 101 101 uint16_t iSelf; 102 /** The process ID of the handle owner. 103 * This is used for access checks. */ 104 RTPROCESS ProcId; 102 105 /** The pointer to the ring-0 only (aka global) VM structure. */ 103 106 PGVM pGVM; … … 112 115 * at times like assertions. */ 113 116 RTNATIVETHREAD hEMT0; 114 /** The process ID of the handle owner.115 * This is used for access checks. */116 RTPROCESS ProcId;117 117 } GVMHANDLE; 118 118 /** Pointer to a global VM handle. */ … … 121 121 /** Number of GVM handles (including the NIL handle). */ 122 122 #if HC_ARCH_BITS == 64 123 # define GVMM_MAX_HANDLES 1024123 # define GVMM_MAX_HANDLES 8192 124 124 #else 125 125 # define GVMM_MAX_HANDLES 128
Note:
See TracChangeset
for help on using the changeset viewer.