Changeset 5606 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Nov 1, 2007 7:43:40 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 25897
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDRVShared.c
r5605 r5606 2981 2981 */ 2982 2982 pImage = (PSUPDRVLDRIMAGE)pv; 2983 pImage->pvImage = ALIGNP(pImage + 1, 32);2983 pImage->pvImage = RT_ALIGN_P(pImage + 1, 32); 2984 2984 pImage->cbImage = pReq->u.In.cbImage; 2985 2985 pImage->pfnModuleInit = NULL; -
trunk/src/VBox/HostDrivers/Support/testcase/tstPin.cpp
r4825 r5606 73 73 aPinnings[i].pv = NULL; 74 74 SUPPageAlloc(0x10000 >> PAGE_SHIFT, &aPinnings[i].pv); 75 aPinnings[i].pvAligned = ALIGNP(aPinnings[i].pv, PAGE_SIZE);75 aPinnings[i].pvAligned = RT_ALIGN_P(aPinnings[i].pv, PAGE_SIZE); 76 76 rc = SUPPageLock(aPinnings[i].pvAligned, 0xf000 >> PAGE_SHIFT, &aPinnings[i].aPages[0]); 77 77 if (!rc)
Note:
See TracChangeset
for help on using the changeset viewer.