Skip to content
Snippets Groups Projects
Commit 005d9ca0 authored by wlott's avatar wlott
Browse files

Interrupt_handle_pending only takes one arg, not three.

parent 8be5f4fd
No related branches found
No related tags found
No related merge requests found
...@@ -147,7 +147,7 @@ static void sigemt_handler(signal, code, context) ...@@ -147,7 +147,7 @@ static void sigemt_handler(signal, code, context)
else else
result = op1 + op2; result = op1 + op2;
context->sc_regs[ALLOC] = result; context->sc_regs[ALLOC] = result;
interrupt_handle_pending(signal, code, context); interrupt_handle_pending(context);
return; return;
} }
......
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