Changeset 29990 in vbox for trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp
- Timestamp:
- Jun 2, 2010 12:54:47 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp
r29987 r29990 225 225 { 226 226 /* We can't probe kernel memory ranges, so pretend it's one big region. */ 227 aRegions[idxRegion].GCRegionAddr = (RTGCPTR64)(PVOID)pBaseAddress; /* stupid cast to prevent sign extension */ 227 #ifdef GC_ARCH_BITS == 64 228 aRegions[idxRegion].GCRegionAddr = (RTGCPTR64)pBaseAddress; 229 #else 230 aRegions[idxRegion].GCRegionAddr = (RTGCPTR32)pBaseAddress; 231 #endif 228 232 aRegions[idxRegion].cbRegion = dwModuleSize; 229 233 idxRegion++;
Note:
See TracChangeset
for help on using the changeset viewer.