mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
hw_x86_64: Add supervisor call handling to Thread::exception
Forward supervisor calls to the Thread::_call function for dispatching.
This commit is contained in:
parent
0568dcc875
commit
83a1b826a3
@ -15,16 +15,27 @@
|
|||||||
/* core includes */
|
/* core includes */
|
||||||
#include <kernel/thread.h>
|
#include <kernel/thread.h>
|
||||||
|
|
||||||
using namespace Kernel;
|
enum Cpu_exception {
|
||||||
|
SUPERVISOR_CALL = 0x80,
|
||||||
|
};
|
||||||
|
|
||||||
|
using namespace Kernel;
|
||||||
|
|
||||||
Thread::Thread(unsigned const priority, unsigned const quota,
|
Thread::Thread(unsigned const priority, unsigned const quota,
|
||||||
char const * const label)
|
char const * const label)
|
||||||
:
|
:
|
||||||
Thread_base(this), Cpu_job(priority, quota), _state(AWAITS_START), _pd(0),
|
Thread_base(this), Cpu_job(priority, quota), _state(AWAITS_START), _pd(0),
|
||||||
_utcb_phys(0), _signal_receiver(0), _label(label)
|
_utcb_phys(0), _signal_receiver(0), _label(label) {}
|
||||||
{ PDBG("not implemented"); }
|
|
||||||
|
|
||||||
|
|
||||||
void Thread::exception(unsigned const cpu) {
|
void Thread::exception(unsigned const cpu)
|
||||||
PDBG("not implemented"); }
|
{
|
||||||
|
if (trapno == SUPERVISOR_CALL) {
|
||||||
|
_call();
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
PWRN("unknown exception 0x%lx", trapno);
|
||||||
|
_stop();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user