Changes in kernel/generic/include/mm/page.h [235e6c7:ada559c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/mm/page.h
r235e6c7 rada559c 38 38 #include <typedefs.h> 39 39 #include <mm/as.h> 40 #include <arch/mm/page.h> 41 42 #define P2SZ(pages) \ 43 ((pages) << PAGE_WIDTH) 40 #include <memstr.h> 44 41 45 42 /** Operations to manipulate page mappings. */ … … 47 44 void (* mapping_insert)(as_t *, uintptr_t, uintptr_t, unsigned int); 48 45 void (* mapping_remove)(as_t *, uintptr_t); 49 pte_t *(* mapping_find)(as_t *, uintptr_t , bool);46 pte_t *(* mapping_find)(as_t *, uintptr_t); 50 47 } page_mapping_operations_t; 51 48 … … 58 55 extern void page_mapping_insert(as_t *, uintptr_t, uintptr_t, unsigned int); 59 56 extern void page_mapping_remove(as_t *, uintptr_t); 60 extern pte_t *page_mapping_find(as_t *, uintptr_t , bool);57 extern pte_t *page_mapping_find(as_t *, uintptr_t); 61 58 extern pte_t *page_table_create(unsigned int); 62 59 extern void page_table_destroy(pte_t *);
Note:
See TracChangeset
for help on using the changeset viewer.