Changeset 78345 in vbox for trunk/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-heap-posix.cpp
- Timestamp:
- Apr 29, 2019 10:15:06 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-heap-posix.cpp
r78334 r78345 774 774 RTDECL(void *) RTMemPageAllocExTag(size_t cb, uint32_t fFlags, const char *pszTag) RT_NO_THROW_DEF 775 775 { 776 AssertReturn(!(fFlags & RTMEMPAGEALLOC_F_VALID_MASK), NULL);776 AssertReturn(!(fFlags & ~RTMEMPAGEALLOC_F_VALID_MASK), NULL); 777 777 return rtMemPagePosixAlloc(cb, pszTag, fFlags, 0); 778 778 }
Note:
See TracChangeset
for help on using the changeset viewer.