mirror of
https://github.com/genodelabs/genode.git
synced 2025-03-25 05:25:32 +00:00
hw_x86_64: Emit debug message on #UD
Print information when handling an undefined instruction exception.
This commit is contained in:
parent
96149db858
commit
4d700fe2ae
@ -35,6 +35,11 @@ void Thread::exception(unsigned const cpu)
|
||||
PWRN("%s -> %s: FPU error", pd_label(), label());
|
||||
_stop();
|
||||
return;
|
||||
case UNDEFINED_INSTRUCTION:
|
||||
PWRN("%s -> %s: undefined instruction at ip=%p",
|
||||
pd_label(), label(), (void*)ip);
|
||||
_stop();
|
||||
return;
|
||||
case SUPERVISOR_CALL:
|
||||
_call();
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user