Changeset 1068f6a in mainline for genarch/src/mm/asid.c
- Timestamp:
- 2006-05-20T19:32:06Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c1982e45
- Parents:
- 9ea6cc5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
genarch/src/mm/asid.c
r9ea6cc5 r1068f6a 58 58 #include <arch/mm/asid.h> 59 59 #include <synch/spinlock.h> 60 #include <synch/mutex.h> 60 61 #include <arch.h> 61 62 #include <adt/list.h> … … 104 105 105 106 as = list_get_instance(tmp, as_t, inactive_as_with_asid_link); 106 spinlock_lock(&as->lock);107 mutex_lock_active(&as->lock); 107 108 108 109 /* … … 118 119 */ 119 120 as->asid = ASID_INVALID; 120 spinlock_unlock(&as->lock);121 mutex_unlock(&as->lock); 121 122 122 123 /*
Note:
See TracChangeset
for help on using the changeset viewer.