Changes in kernel/genarch/src/mm/asid.c [55b77d9:402eda5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/mm/asid.c
r55b77d9 r402eda5 97 97 * inactive address space. 98 98 */ 99 tmp = list_first(&inactive_as_with_asid_list);100 ASSERT(tmp != NULL);99 ASSERT(!list_empty(&inactive_as_with_asid_head)); 100 tmp = inactive_as_with_asid_head.next; 101 101 list_remove(tmp); 102 102
Note:
See TracChangeset
for help on using the changeset viewer.