Changeset 252127e in mainline for generic/include/mm/as.h
- Timestamp:
- 2006-04-03T22:15:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b26db0c
- Parents:
- b9b14a83
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/mm/as.h
rb9b14a83 r252127e 37 37 #include <synch/spinlock.h> 38 38 #include <adt/list.h> 39 #include <adt/btree.h> 39 40 40 41 /** Defined to be true if user address space and kernel address space shadow each other. */ … … 64 65 struct as_area { 65 66 SPINLOCK_DECLARE(lock); 66 link_t link;67 67 int flags; 68 68 count_t pages; /**< Size of this area in multiples of PAGE_SIZE. */ … … 86 86 count_t refcount; 87 87 88 link_t as_area_head; 88 /** B+-tree of address space areas. */ 89 btree_t as_area_btree; 89 90 90 91 /** Page table pointer. Constant on architectures that use global page hash table. */
Note:
See TracChangeset
for help on using the changeset viewer.