Changeset 7e4e532 in mainline for generic/include/mm/as.h
- Timestamp:
- 2006-02-08T23:37:38Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 874878a
- Parents:
- bb68433
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/mm/as.h
rbb68433 r7e4e532 77 77 struct as { 78 78 /** Protected by asidlock. Must be acquired before as->lock. */ 79 link_t as_with_asid_link;79 link_t inactive_as_with_asid_link; 80 80 81 81 SPINLOCK_DECLARE(lock); 82 83 /** Number of processors on wich is this address space active. */ 84 count_t refcount; 85 82 86 link_t as_area_head; 83 87 … … 97 101 extern as_operations_t *as_operations; 98 102 103 extern spinlock_t as_lock; 104 extern link_t inactive_as_with_asid_head; 105 99 106 extern void as_init(void); 100 107 extern as_t *as_create(int flags); … … 102 109 extern void as_set_mapping(as_t *as, __address page, __address frame); 103 110 extern int as_page_fault(__address page); 104 extern void as_ install(as_t *m);111 extern void as_switch(as_t *old, as_t *new); 105 112 106 113 /* Interface to be implemented by architectures. */
Note:
See TracChangeset
for help on using the changeset viewer.