pub fn fork_join(f: impl FnOnce() -> i32) -> Result<i32>
Fork the current process, and execute the provided closure within child process, and wait for it to complete.