Implement VM #63

Merged
td1223 merged 94 commits from vm/merged/themis into master 2024-12-06 05:07:14 +00:00
10 changed files with 190 additions and 62 deletions
Showing only changes of commit 05a48cf9c6 - Show all commits

View File

@@ -155,6 +155,7 @@ page_fault (struct intr_frame *f)
{ {
if (try_alloc_new_page (fault_addr, thread_current ()->curr_esp)) if (try_alloc_new_page (fault_addr, thread_current ()->curr_esp))
return; return;
f->eip = (void *)f->eax; f->eip = (void *)f->eax;
f->eax = 0xffffffff; f->eax = 0xffffffff;
return; return;