pub fn install_signal_handler()Expand description
Install the SIGQUIT signal handler for diagnostics
This is called automatically by scheduler_init, but can be called explicitly if needed. Safe to call multiple times (idempotent).
§Implementation
Uses a dedicated thread to handle signals safely. The signal-hook iterator API ensures we’re not calling non-async-signal-safe functions from within a signal handler context.