Trigger INT3 on unexpected system thread termination
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 36s
Builds / ExectOS (i686, debug) (push) Successful in 33s
Builds / ExectOS (i686, release) (push) Successful in 1m13s
Builds / ExectOS (amd64, release) (push) Successful in 1m14s

This commit is contained in:
2026-06-16 10:49:16 +02:00
parent 208684c3b4
commit d1aa3cf481

View File

@@ -34,6 +34,8 @@ XTAPI
VOID VOID
KE::KThread::HandleSystemThreadExit(VOID) KE::KThread::HandleSystemThreadExit(VOID)
{ {
/* Trigger a debugger breakpoint */
asm("int $3\n");
} }
/** /**