Changes in uspace/app/tester/mm/mapping1.c [a35b458:e43acd3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/mm/mapping1.c
ra35b458 re43acd3 73 73 for (i = 0; i < page_count; i++) { 74 74 void *page_start = ((char *) area) + PAGE_SIZE * i; 75 errno_t rc = as_get_physical_mapping(page_start, NULL); 75 uintptr_t phys_dummy; 76 errno_t rc = as_get_physical_mapping(page_start, &phys_dummy); 76 77 if (rc != expected_rc) { 77 78 TPRINTF("as_get_physical_mapping() = %s != %s\n",
Note:
See TracChangeset
for help on using the changeset viewer.