(key: String, value: u32)
| 30 | } |
| 31 | |
| 32 | pub fn set_exec_counter_value(key: String, value: u32) { |
| 33 | let mut guard = EXEC_COUNTER.get_or_init(|| RwLock::new(HashMap::new())).write().unwrap(); |
| 34 | guard.insert(key, value); |
| 35 | } |
| 36 | |
| 37 | pub fn save_exec_counter(deopt: &Deopt) { |
| 38 | let counter_path: PathBuf = [ |
no outgoing calls
no test coverage detected