Changeset 1862 in vbox
- Timestamp:
- Apr 2, 2007 2:36:55 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20081
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r1840 r1862 143 143 /** The GIP update mode, see SUPGIPMODE. */ 144 144 uint32_t u32Mode; 145 /** Reserved / padding. */ 146 uint32_t u32Padding0; 145 147 /** The update frequency of the of the NanoTS. */ 146 148 volatile uint32_t u32UpdateHz; … … 151 153 152 154 /** Padding / reserved space for future data. */ 153 uint32_t au32Padding 0[10];155 uint32_t au32Padding1[56]; 154 156 155 157 /** Array of per-cpu data. -
trunk/src/VBox/HostDrivers/Support/SUPDRVIOC.h
r1850 r1862 174 174 * The upper 16-bit is the major version, the the lower the minor version. 175 175 * When incompatible changes are made, the upper major number has to be changed. */ 176 #define SUPDRVIOC_VERSION 0x0004000 3176 #define SUPDRVIOC_VERSION 0x00040004 177 177 178 178 /** SUP_IOCTL_COOKIE Input. */ -
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r1850 r1862 198 198 In.u32ReqVersion = SUPDRVIOC_VERSION; 199 199 if (SUPDRVIOC_VERSION < 0x00050000) 200 In.u32MinVersion = 0x0004000 3;200 In.u32MinVersion = 0x00040004; 201 201 else 202 202 In.u32MinVersion = SUPDRVIOC_VERSION & 0xffff0000; … … 205 205 { 206 206 if ( (Out.u32SessionVersion & 0xffff0000) == (SUPDRVIOC_VERSION & 0xffff0000) 207 && Out.u32SessionVersion >= 0x0004000 3)207 && Out.u32SessionVersion >= 0x00040004) 208 208 { 209 209 /*
Note:
See TracChangeset
for help on using the changeset viewer.