Changeset 38838 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Sep 23, 2011 11:21:55 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/VMInternal.h
r36041 r38838 174 174 typedef struct VMINTUSERPERVM 175 175 { 176 /** Head of the request queue. Atomic. */ 177 volatile PVMREQ pReqs; 176 /** Head of the standard request queue. Atomic. */ 177 volatile PVMREQ pNormalReqs; 178 /** Head of the priority request queue. Atomic. */ 179 volatile PVMREQ pPriorityReqs; 178 180 /** The last index used during alloc/free. */ 179 181 volatile uint32_t iReqFree; … … 315 317 typedef struct VMINTUSERPERVMCPU 316 318 { 317 /** Head of the request queue. Atomic. */ 318 volatile PVMREQ pReqs; 319 /** Head of the normal request queue. Atomic. */ 320 volatile PVMREQ pNormalReqs; 321 /** Head of the priority request queue. Atomic. */ 322 volatile PVMREQ pPriorityReqs; 319 323 320 324 /** The handle to the EMT thread. */
Note:
See TracChangeset
for help on using the changeset viewer.