Kernel: Do not hang when a user task misbehaves

This was for testing/debugging. But we DEFINITELY don't want that.
This commit is contained in:
apio 2022-10-19 17:25:56 +02:00
parent 656667812a
commit ef8ba3dec4

View File

@ -51,8 +51,6 @@ extern "C" void common_handler(Context* context)
StackTracer tracer(context->rbp);
tracer.trace_with_ip(context->rip);
hang(); // FIXME: Remove this when multiple address spaces are working.
Scheduler::task_misbehave(context, -3);
}
}