Changeset 385 in vbox for trunk/src/VBox/Runtime/include/internal
- Timestamp:
- Jan 27, 2007 8:05:44 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/memobj.h
r217 r385 156 156 { 157 157 /** The process that owns the locked memory. 158 * This is NIL_RT PROCESS if it's kernel memory. */159 RT PROCESSProcess;158 * This is NIL_RTR0PROCESS if it's kernel memory. */ 159 RTR0PROCESS R0Process; 160 160 } Lock; 161 161 … … 173 173 { 174 174 /** The process that owns the reserved memory. 175 * This is NIL_RT PROCESS if it's kernel memory. */176 RT PROCESSProcess;175 * This is NIL_RTR0PROCESS if it's kernel memory. */ 176 RTR0PROCESS R0Process; 177 177 } ResVirt; 178 178 … … 181 181 { 182 182 /** The process that owns the reserved memory. 183 * This is NIL_RT PROCESS if it's kernel memory. */184 RT PROCESSProcess;183 * This is NIL_RTR0PROCESS if it's kernel memory. */ 184 RTR0PROCESS R0Process; 185 185 } Mapping; 186 186 } u;
Note:
See TracChangeset
for help on using the changeset viewer.