ExceptionStackFrame was renamed to InterruptStackFrame

This commit is contained in:
Philipp Oppermann
2019-03-09 12:56:32 +01:00
parent b95ec88e4f
commit d2852ce966
4 changed files with 23 additions and 23 deletions

View File

@@ -74,7 +74,7 @@ lazy_static! {
// new
extern "x86-interrupt" fn double_fault_handler(
stack_frame: &mut ExceptionStackFrame, _error_code: u64)
stack_frame: &mut InterruptStackFrame, _error_code: u64)
{
println!("EXCEPTION: DOUBLE FAULT\n{:#?}", stack_frame);
loop {}