()
| 712 | /// The child must not write to the parent's wakeup fd. |
| 713 | #[cfg(unix)] |
| 714 | pub(crate) fn clear_wakeup_fd_after_fork() { |
| 715 | WAKEUP.store(INVALID_WAKEUP, Ordering::Relaxed); |
| 716 | } |
| 717 | |
| 718 | pub(crate) fn module_exec( |
| 719 | vm: &VirtualMachine, |
no test coverage detected