Comment on: Show HN: PON-BEAM re-architecture of the Erlang VM
Hi HN,I built PON-BEAM, a heavily modified version of the Erlang/OTP 30 virtual machine. I wanted to eliminate the O(N) selective receive bottleneck and the CPU-heavy scheduler spinlocks by introducing a reactive, event-driven notification mesh at the C level (using epoll/eventfd).However, changing how the Erlang scheduler and garbage collector handle state transitions is notoriously dangerous and prone to lost wakeups or deadlocks. To make this viable, I had to formally prove the new architecture.I used a 4-pillar verification pipeline:TLA+ / TLC to model the non-blocking invariants of the ne