running-process-platform-internal 4.10.12

Blessed platform process operations for running-process (implementation detail)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! External broker serving is currently implemented only for Linux.
pub fn run(_endpoint: &str, _cancelled: &std::sync::atomic::AtomicBool) -> std::io::Result<()> {
    Err(std::io::Error::from(std::io::ErrorKind::Unsupported))
}

pub fn spawn(
    _spec: &crate::platform::independent_spawn::LaunchSpec,
    _endpoint: &str,
    _timeout: std::time::Duration,
    _cancelled: &std::sync::atomic::AtomicBool,
) -> std::io::Result<crate::IndependentChild> {
    Err(std::io::Error::from(std::io::ErrorKind::Unsupported))
}