Changeset 8170 in vbox for trunk/src/VBox/Runtime/r3/freebsd
- Timestamp:
- Apr 18, 2008 5:52:25 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29880
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/freebsd/alloc-freebsd.cpp
r8155 r8170 1 1 /* $Id$ */ 2 2 /** @file 3 * innotekPortable Runtime - Memory Allocation, POSIX.3 * Incredibly Portable Runtime - Memory Allocation, POSIX. 4 4 */ 5 5 … … 99 99 cb = RT_ALIGN_Z(cb, PAGE_SIZE); 100 100 void *pv = malloc(cb); 101 AssertReleaseMsgReturn(RT_ALIGN_P(pv, PAGE_SIZE) == pv, 102 ("malloc(%zu) -> %p; expected page aligned!\n", cb, pv), 101 AssertReleaseMsgReturn(RT_ALIGN_P(pv, PAGE_SIZE) == pv, 102 ("malloc(%zu) -> %p; expected page aligned!\n", cb, pv), 103 103 NULL); 104 104 return pv;
Note:
See TracChangeset
for help on using the changeset viewer.