Changeset 13796 in vbox for trunk/include
- Timestamp:
- Nov 4, 2008 6:37:33 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38784
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/uvm.h
r13782 r13796 33 33 #define ___VBox_uvm_h 34 34 35 36 35 #include <VBox/types.h> 37 36 38 /* Forward decl. */39 struct UVM;40 37 41 38 /** … … 44 41 typedef struct UVMCPU 45 42 { 46 struct UVM *pUVM; 43 /** Pointer to the UVM structure. */ 44 PUVM pUVM; 45 /** The virtual CPU ID. */ 47 46 RTCPUID idCPU; 48 47 … … 55 54 uint8_t padding[768]; 56 55 } vm; 57 } UVMCPU, *PUVMCPU; 56 } UVMCPU; 57 /** Pointer to the per virtual CPU ring-3 (user mode) data. */ 58 typedef UVMCPU *PUVMCPU; 59 58 60 59 61 /** … … 115 117 } stam; 116 118 117 /* Per virtual CPU data. */118 UVMCPU aCpu [1];119 /** Per virtual CPU data. */ 120 UVMCPU aCpus[1]; 119 121 } UVM; 120 122 -
trunk/include/VBox/vm.h
r13791 r13796 779 779 uint32_t u32Reserved2[8]; 780 780 781 /** VMCPU array for the configured number of virtual CPUs. */ 782 VMCPU aCpu[1]; 781 /** VMCPU array for the configured number of virtual CPUs. 782 * Must be aligned on a 64-byte boundrary. */ 783 VMCPU aCpus[1]; 783 784 } VM; 784 785
Note:
See TracChangeset
for help on using the changeset viewer.