Changes in uspace/app/tester/mm/mapping1.c [9727b92:fbcdeb8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/mm/mapping1.c
r9727b92 rfbcdeb8 42 42 TPRINTF("Creating AS area...\n"); 43 43 44 void *result = as_area_create( AS_AREA_ANY, size,45 AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE);46 if (result == AS_MAP_FAILED)44 void *result = as_area_create((void *) -1, size, 45 AS_AREA_READ | AS_AREA_WRITE); 46 if (result == (void *) -1) 47 47 return NULL; 48 48
Note:
See TracChangeset
for help on using the changeset viewer.