Mountain/IPC/WindServiceHandlers/Git/Shared/RunningProcesses.rs
1//! Returns the global PID registry for cancel-by-OperationId.
2
3use std::{collections::HashMap, sync::Mutex};
4
5pub fn Fn() -> &'static Mutex<HashMap<String, u32>> { super::running_processes() }