(&mut self)
| 3464 | } |
| 3465 | |
| 3466 | fn dirty_log(&mut self) -> std::result::Result<MemoryRangeTable, MigratableError> { |
| 3467 | Ok(MemoryRangeTable::new_from_tables(vec![ |
| 3468 | self.memory_manager.lock().unwrap().dirty_log()?, |
| 3469 | self.device_manager.lock().unwrap().dirty_log()?, |
| 3470 | ])) |
| 3471 | } |
| 3472 | |
| 3473 | fn start_migration(&mut self) -> std::result::Result<(), MigratableError> { |
| 3474 | self.memory_manager.lock().unwrap().start_migration()?; |
no outgoing calls
no test coverage detected