← board

Rust frontend RTL — thread / atomics / mpsc shims

What it does

Pure API-shape wrappers — every underlying primitive already exists in lib/rtl, confirmed by reading the tree, nothing new at the runtime level:

Real-world confirmation: ~/nextlevel/engine/src/search.rs + src/uci.rs use std::thread::spawn, JoinHandle, mpsc::channel, AtomicBool, AtomicU64, Arc<AtomicBool> — this is the concurrency surface the target app actually needs, nothing more exotic (no RwLock/Condvar in that codebase as of the audit).

Acceptance

Log