Changeset 12675 in vbox for trunk/include
- Timestamp:
- Sep 23, 2008 5:53:19 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 36968
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vm.h
r12669 r12675 92 92 /** The CPU ID. 93 93 * This is the index into the VM::aCpus array. */ 94 uint32_tidCpu;94 VMCPUID idCpu; 95 95 /** The ring-3 thread handle of the emulation thread for this CPU. 96 96 * @todo Use the VM_IS_EMT() macro to check if executing in EMT? */ … … 251 251 */ 252 252 #define VM_FF_ISSET(pVM, fFlag) (((pVM)->fForcedActions & (fFlag)) == (fFlag)) 253 254 253 #define VMCPU_FF_ISSET(pVM, cpu, fFlag) (((pVM)->aCpus[cpu].fForcedActions & (fFlag)) == (fFlag)) 255 254 … … 369 368 /** Number of virtual CPUs. */ 370 369 uint32_t cCPUs; 371 /** Current CPU id; @todo move to per CPU structure. */372 uint32_t idCPU;373 370 /** Reserved; alignment. */ 374 uint32_t u32Reserved[ 7];371 uint32_t u32Reserved[8]; 375 372 376 373 /** @name Public VMM Switcher APIs -
trunk/include/VBox/vm.mac
r12657 r12675 57 57 .hSelf resd 1 58 58 .cCPUs resd 1 59 .idCPU resd 1 60 .u32Reserved resd 7 59 .u32Reserved resd 8 61 60 62 61 .pfnVMMGCGuestToHostAsmGuestCtx RTGCPTR32_RES 1
Note:
See TracChangeset
for help on using the changeset viewer.