Changeset 92556 in vbox for trunk/src/VBox/HostDrivers/Support/os2
- Timestamp:
- Nov 23, 2021 1:12:29 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/os2/SUPLib-os2.cpp
r85129 r92556 164 164 165 165 166 DECLHIDDEN(int) suplibOsPageAlloc(PSUPLIBDATA pThis, size_t cPages, void **ppvPages)166 DECLHIDDEN(int) suplibOsPageAlloc(PSUPLIBDATA pThis, size_t cPages, uint32_t fFlags, void **ppvPages) 167 167 { 168 NOREF(pThis);168 RT_NOREF(pThis, fFlags); 169 169 *ppvPages = NULL; 170 170 int rc = DosAllocMem(ppvPages, cPages << PAGE_SHIFT, PAG_READ | PAG_WRITE | PAG_EXECUTE | PAG_COMMIT | OBJ_ANY);
Note:
See TracChangeset
for help on using the changeset viewer.