Changeset 63451 in vbox for trunk/src/VBox/Runtime/r3/generic
- Timestamp:
- Aug 15, 2016 12:39:40 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/generic/allocex-r3-generic.cpp
r62477 r63451 41 41 DECLHIDDEN(int) rtMemAllocEx16BitReach(size_t cbAlloc, uint32_t fFlags, void **ppv) 42 42 { 43 RT_NOREF(cbAlloc, fFlags, ppv); 43 44 return VERR_NOT_SUPPORTED; 44 45 } … … 47 48 DECLHIDDEN(int) rtMemAllocEx32BitReach(size_t cbAlloc, uint32_t fFlags, void **ppv) 48 49 { 50 RT_NOREF(cbAlloc, fFlags, ppv); 49 51 return VERR_NOT_SUPPORTED; 50 52 } … … 53 55 DECLHIDDEN(void) rtMemFreeExYyBitReach(void *pv, size_t cb, uint32_t fFlags) 54 56 { 57 RT_NOREF(pv, cb, fFlags); 55 58 AssertFailed(); 56 59 }
Note:
See TracChangeset
for help on using the changeset viewer.