Changeset f5935ed in mainline for generic/include/mm/page.h
- Timestamp:
- 2006-02-06T15:09:58Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 021d471
- Parents:
- c7ec94a4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/mm/page.h
rc7ec94a4 rf5935ed 61 61 62 62 /** Operations to manipulate page mappings. */ 63 struct page_ operations {63 struct page_mapping_operations { 64 64 void (* mapping_insert)(as_t *as, __address page, __address frame, int flags); 65 65 pte_t *(* mapping_find)(as_t *as, __address page); 66 66 }; 67 typedef struct page_ operations page_operations_t;67 typedef struct page_mapping_operations page_mapping_operations_t; 68 68 69 extern page_ operations_t *page_operations;69 extern page_mapping_operations_t *page_mapping_operations; 70 70 71 71 extern void page_init(void);
Note:
See TracChangeset
for help on using the changeset viewer.