Revert "Try again: in unix like system, set foreground process while running external command (#6273)" (#6542)

This reverts commit 1d18f6947e.
This commit is contained in:
Dan Davison
2022-09-11 16:14:58 -04:00
committed by GitHub
parent 367f79cb4f
commit 2bb367f570
7 changed files with 11 additions and 192 deletions

View File

@ -1,15 +1,10 @@
mod foreground;
#[cfg(any(target_os = "android", target_os = "linux"))]
mod linux;
#[cfg(target_os = "macos")]
mod macos;
#[cfg(target_family = "unix")]
pub mod signal;
#[cfg(target_os = "windows")]
mod windows;
pub use self::foreground::{ForegroundChild, ForegroundProcess};
#[cfg(any(target_os = "android", target_os = "linux"))]
pub use self::linux::*;
#[cfg(target_os = "macos")]