(&mut self)
| 432 | B: VsockBackend, |
| 433 | { |
| 434 | fn drop(&mut self) { |
| 435 | if let Some(kill_evt) = self.common.kill_evt.take() { |
| 436 | // Ignore the result because there is nothing we can do about it. |
| 437 | let _ = kill_evt.write(1); |
| 438 | } |
| 439 | self.common.wait_for_epoll_threads(); |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | impl<B> VirtioDevice for Vsock<B> |
nothing calls this directly
no test coverage detected