(&mut self, device_id: u32, mapping: Arc<dyn ExternalDmaMapping>)
| 1217 | } |
| 1218 | |
| 1219 | pub fn add_external_mapping(&mut self, device_id: u32, mapping: Arc<dyn ExternalDmaMapping>) { |
| 1220 | self.ext_mapping.lock().unwrap().insert(device_id, mapping); |
| 1221 | } |
| 1222 | |
| 1223 | #[cfg(fuzzing)] |
| 1224 | pub fn wait_for_epoll_threads(&mut self) { |
no test coverage detected