/// Immediately terminate the calling process without calling /// atexit callbacks, C runtime destructors etc. We mainly use /// this to protect coverage data from concurrent writes. pub fn exit_now(code: u8) -> ! { // SAFETY: exiting is safe, the ffi is not safe unsafe { nix::libc::_exit(code as _) }; }