This commit is contained in:
2026-02-03 03:08:13 +01:00
parent 660f48216a
commit 3380e454df
6 changed files with 129 additions and 95 deletions

View File

@@ -62,6 +62,10 @@ struct Args {
}
fn main() -> io::Result<()> {
// Lock memory BEFORE any threads are spawned to prevent page faults in RT context
#[cfg(unix)]
engine::realtime::lock_memory();
let args = Args::parse();
let settings = Settings::load();