mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
c93b142692
* Initial commit
Forked at: 703ac8bbbc
Parent branch: origin/master
* Test running node and interrupts
* WIP
Forked at: 1942ae27ae23809a40f955545dfbf0467faa7750
Parent branch: origin/cumulus-branch
* Update Cargo.lock
* WIP
Forked at: 1942ae27ae23809a40f955545dfbf0467faa7750
Parent branch: origin/cumulus-branch
* WIP
Forked at: 1942ae27ae23809a40f955545dfbf0467faa7750
Parent branch: origin/cumulus-branch
* WIP
Forked at: 1942ae27ae23809a40f955545dfbf0467faa7750
Parent branch: origin/cumulus-branch
35 lines
1.2 KiB
Rust
35 lines
1.2 KiB
Rust
// Copyright 2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Substrate is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use std::{process::{Child, ExitStatus}, thread, time::Duration};
|
|
|
|
/// Wait for the given `child` the given ammount of `secs`.
|
|
///
|
|
/// Returns the `Some(exit status)` or `None` if the process did not finish in the given time.
|
|
pub fn wait_for(child: &mut Child, secs: usize) -> Option<ExitStatus> {
|
|
for _ in 0..secs {
|
|
match child.try_wait().unwrap() {
|
|
Some(status) => return Some(status),
|
|
None => thread::sleep(Duration::from_secs(1)),
|
|
}
|
|
}
|
|
eprintln!("Took to long to exit. Killing...");
|
|
let _ = child.kill();
|
|
child.wait().unwrap();
|
|
|
|
None
|
|
}
|