feat: implement page swapping

This commit is contained in:
Themis Demetriades
2024-12-03 16:53:47 +00:00
parent df7d847978
commit 08eafcf7ef
3 changed files with 39 additions and 3 deletions

View File

@@ -4,6 +4,7 @@
#include "threads/thread.h"
void page_set_swap (struct thread *, void *, size_t);
bool page_in_swap (struct thread *, void *);
size_t page_get_swap (struct thread *, void *);
#endif /* vm/frame.h */