Changes in uspace/lib/c/generic/malloc.c [30718cc2:d161715] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/malloc.c
r30718cc2 rd161715 44 44 #include <mem.h> 45 45 #include <futex.h> 46 #include <stdlib.h> 46 47 #include <adt/gcdlcm.h> 47 48 #include "private/malloc.h" … … 240 241 size_t asize = ALIGN_UP(size, PAGE_SIZE); 241 242 242 astart = as_area_create(astart, asize, AS_AREA_WRITE | AS_AREA_READ | AS_AREA_CACHEABLE);243 astart = as_area_create(astart, asize, AS_AREA_WRITE | AS_AREA_READ); 243 244 if (astart == (void *) -1) 244 245 return false;
Note:
See TracChangeset
for help on using the changeset viewer.