mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:07:46 +00:00
Kernel: Oops, SC_abort was actually calling sys$exit_thread()
This commit is contained in:
parent
4d006de2b9
commit
14aa8e3708
1 changed files with 11 additions and 3 deletions
|
@ -102,11 +102,19 @@ KResultOr<FlatPtr> handle(RegisterState& regs, FlatPtr function, FlatPtr arg1, F
|
||||||
process.tracer_trap(*current_thread, regs); // this triggers SIGTRAP and stops the thread!
|
process.tracer_trap(*current_thread, regs); // this triggers SIGTRAP and stops the thread!
|
||||||
}
|
}
|
||||||
|
|
||||||
if (function == SC_exit)
|
switch (function) {
|
||||||
|
case SC_abort:
|
||||||
|
process.sys$abort();
|
||||||
|
break;
|
||||||
|
case SC_exit:
|
||||||
process.sys$exit(arg1);
|
process.sys$exit(arg1);
|
||||||
else
|
break;
|
||||||
|
case SC_exit_thread:
|
||||||
process.sys$exit_thread(arg1);
|
process.sys$exit_thread(arg1);
|
||||||
VERIFY_NOT_REACHED();
|
break;
|
||||||
|
default:
|
||||||
|
VERIFY_NOT_REACHED();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (function == SC_fork || function == SC_sigreturn) {
|
if (function == SC_fork || function == SC_sigreturn) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue