summaryrefslogtreecommitdiffstats
path: root/vm/page.h
diff options
context:
space:
mode:
Diffstat (limited to 'vm/page.h')
-rw-r--r--vm/page.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vm/page.h b/vm/page.h
index da1398c..c78ab65 100644
--- a/vm/page.h
+++ b/vm/page.h
@@ -26,6 +26,7 @@ struct page_table_entry
26void page_table_init (struct hash *ht); 26void page_table_init (struct hash *ht);
27void page_table_free (struct hash *ht); 27void page_table_free (struct hash *ht);
28struct page_table_entry *page_table_fetch (struct hash *ht, void *upage); 28struct page_table_entry *page_table_fetch (struct hash *ht, void *upage);
29struct page_table_entry *page_table_remove (struct hash *ht, void *upage);
29bool page_table_insert_segment (struct hash *ht, struct file *file, off_t ofs, 30bool page_table_insert_segment (struct hash *ht, struct file *file, off_t ofs,
30 uint8_t *upage, uint32_t read_bytes, bool writable); 31 uint8_t *upage, uint32_t read_bytes, bool writable);
31bool page_load (struct page_table_entry *pte); 32bool page_load (struct page_table_entry *pte);