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