- Timestamp:
- Feb 6, 2007 4:28:38 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18316
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/HostDrivers/Support/SUPDRV.h ¶
r387 r679 118 118 * to actually be much lower. The values here have been determined experimentally. 119 119 */ 120 #ifdef __ WIN32__120 #ifdef __X86__ 121 121 # define MAX_LOCK_MEM_SIZE (32*1024*1024) /* 32mb */ 122 122 #endif 123 #ifdef __ WIN64__123 #ifdef __AMD64__ 124 124 # define MAX_LOCK_MEM_SIZE (24*1024*1024) /* 24mb */ 125 125 #endif -
TabularUnified trunk/src/VBox/HostDrivers/Support/SUPDRVShared.c ¶
r418 r679 2725 2725 static uint8_t au8Ints[] = 2726 2726 { 2727 #ifdef __WIN 32__/* We don't use 0xef and above because they are system stuff on linux (ef is IPI,2727 #ifdef __WIN__ /* We don't use 0xef and above because they are system stuff on linux (ef is IPI, 2728 2728 * local apic timer, or some other frequently fireing thing). */ 2729 2729 0xef, 0xee, 0xed, 0xec, … … 2962 2962 *u.pb++ = 0xc0; 2963 2963 2964 #ifdef __WIN 32__2964 #ifdef __WIN__ 2965 2965 *u.pb++ = 0xb8; // mov eax, KernelFS 2966 2966 *u.pu32++ = ASMGetFS();
Note:
See TracChangeset
for help on using the changeset viewer.