Ignore:
File:
1 edited

Legend:

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

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