mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
abe8a113ad
This is in preperation for dynamic import (#1789), which is more easily implemented when errors are dynamic.
16 lines
421 B
Rust
16 lines
421 B
Rust
use deno::ErrBox;
|
|
|
|
#[cfg(unix)]
|
|
pub fn kill(pid: i32, signo: i32) -> Result<(), ErrBox> {
|
|
use nix::sys::signal::{kill as unix_kill, Signal};
|
|
use nix::unistd::Pid;
|
|
let sig = Signal::from_c_int(signo)?;
|
|
unix_kill(Pid::from_raw(pid), Option::Some(sig)).map_err(ErrBox::from)
|
|
}
|
|
|
|
#[cfg(not(unix))]
|
|
pub fn kill(_pid: i32, _signal: i32) -> Result<(), ErrBox> {
|
|
// NOOP
|
|
// TODO: implement this for windows
|
|
Ok(())
|
|
}
|