mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 15:32:25 +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…
Reference in New Issue
Block a user