Skip to content
Snippets Groups Projects
Commit d4ca1313 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

cr3 in context

parent 70bf79a9
No related branches found
No related tags found
No related merge requests found
...@@ -81,6 +81,7 @@ impl ContextList { ...@@ -81,6 +81,7 @@ impl ContextList {
let func_ptr = stack.as_mut_ptr().offset(offset as isize); let func_ptr = stack.as_mut_ptr().offset(offset as isize);
*(func_ptr as *mut usize) = func as usize; *(func_ptr as *mut usize) = func as usize;
} }
context.arch.set_page_table(unsafe { arch::paging::ActivePageTable::new().address() });
context.arch.set_stack(stack.as_ptr() as usize + offset); context.arch.set_stack(stack.as_ptr() as usize + offset);
context.kstack = Some(stack); context.kstack = Some(stack);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment