Changeset 13230 in vbox for trunk/include/VBox
- Timestamp:
- Oct 13, 2008 7:03:16 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 37805
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vm.h
r13189 r13230 683 683 struct REM s; 684 684 #endif 685 686 #ifdef VBOX_WITH_NEW_RECOMPILER 687 /* Must be multiple of 32 and coherent with REM_ENV_SIZE from REMInternal.h */ 685 688 #if GC_ARCH_BITS == 32 686 char padding[HC_ARCH_BITS == 32 ? 0x6f00 : 0xbf00]; /* multiple of 32 */ 687 #else 688 char padding[HC_ARCH_BITS == 32 ? 0x9f00 : 0xdf00]; /* multiple of 32 */ 689 #endif 689 #define VM_REM_SIZE (HC_ARCH_BITS == 32 ? 0xff00 : 0xff00) 690 #else 691 #define VM_REM_SIZE (HC_ARCH_BITS == 32 ? 0xff00 : 0xff00) 692 #endif 693 #else 694 #if GC_ARCH_BITS == 32 695 #define VM_REM_SIZE (HC_ARCH_BITS == 32 ? 0x6f00 : 0xbf00) 696 #else 697 #define VM_REM_SIZE (HC_ARCH_BITS == 32 ? 0x9f00 : 0xdf00) 698 #endif 699 #endif // VBOX_WITH_NEW_RECOMILER 700 char padding[ VM_REM_SIZE]; /* multiple of 32 */ 690 701 } rem; 691 702
Note:
See TracChangeset
for help on using the changeset viewer.