Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/malloc.c

    rd161715 r30718cc2  
    4444#include <mem.h>
    4545#include <futex.h>
    46 #include <stdlib.h>
    4746#include <adt/gcdlcm.h>
    4847#include "private/malloc.h"
     
    241240        size_t asize = ALIGN_UP(size, PAGE_SIZE);
    242241       
    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);
    244243        if (astart == (void *) -1)
    245244                return false;
Note: See TracChangeset for help on using the changeset viewer.