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