Changeset 78335 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Apr 26, 2019 7:54:48 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/memsafer-r3.cpp
r76553 r78335 339 339 */ 340 340 int rc = VINF_SUCCESS; 341 void *pvPages = RTMemPageAlloc((size_t)pThis->cPages * PAGE_SIZE); 341 void *pvPages = RTMemPageAllocEx((size_t)pThis->cPages * PAGE_SIZE, 342 RTMEMPAGEALLOC_F_ADVISE_LOCKED | RTMEMPAGEALLOC_F_ADVISE_NO_DUMP | RTMEMPAGEALLOC_F_ZERO); 342 343 if (pvPages) 343 344 {
Note:
See TracChangeset
for help on using the changeset viewer.