use std::sync::atomic::AtomicBool;
static SIGINT_RECEIVED: AtomicBool = AtomicBool::new(false);
#[cfg(not(any(target_os = "windows", target_arch = "wasm32")))]
#[allow(unsafe_code)]
#[allow(clippy::fn_to_numeric_cast_any)]
pub fn track_sigint() {
static ONCE: std::sync::Once = std::sync::Once::new();
ONCE.call_once(|| {
unsafe {
libc::signal(
libc::SIGINT,
signal_handler as *const fn(libc::c_int) as libc::size_t,
);
}
unsafe extern "C" fn signal_handler(signum: libc::c_int) {
SIGINT_RECEIVED.store(true, std::sync::atomic::Ordering::Relaxed);
unsafe {
libc::signal(signum, libc::SIG_DFL);
libc::raise(signum);
}
}
});
}
#[cfg(any(target_os = "windows", target_arch = "wasm32"))]
#[allow(unsafe_code)]
#[allow(clippy::fn_to_numeric_cast_any)]
pub fn track_sigint() {}
pub fn was_sigint_ever_caught() -> bool {
track_sigint();
SIGINT_RECEIVED.load(std::sync::atomic::Ordering::Relaxed)
}