Changeset 1d432f9 in mainline for kernel/genarch/src/mm/asid.c
- Timestamp:
- 2010-05-31T22:33:44Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 179d052
- Parents:
- 3a2b636
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/mm/asid.c
r3a2b636 r1d432f9 70 70 /** Allocate free address space identifier. 71 71 * 72 * Interrupts must be disabled and inactive_as_with_asid_lock must be held 73 * prior to this call 72 * Interrupts must be disabled and asidlock must be held prior to this call 74 73 * 75 74 * @return New ASID. … … 80 79 link_t *tmp; 81 80 as_t *as; 81 82 ASSERT(interrupts_disabled()); 83 ASSERT(spinlock_locked(&asidlock)); 82 84 83 85 /*
Note:
See TracChangeset
for help on using the changeset viewer.