Enforce volatile semantics on inline assembly
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in 34s
Builds / ExectOS (i686, release) (push) Successful in 32s
Builds / ExectOS (i686, debug) (push) Successful in 41s
Builds / ExectOS (amd64, debug) (push) Successful in 44s

This commit is contained in:
2026-06-18 11:33:54 +02:00
parent bae43034a6
commit 9faf19b57e

View File

@@ -101,7 +101,7 @@ VOID
KE::KThread::HandleSystemThreadExit(VOID) KE::KThread::HandleSystemThreadExit(VOID)
{ {
/* Trigger a debugger breakpoint */ /* Trigger a debugger breakpoint */
asm("int $3\n"); __asm__ volatile("int $3\n");
} }
/** /**