diff options
| author | Jeremy Smart <jeremy3141592@gmail.com> | 2025-06-18 00:38:55 -0400 |
|---|---|---|
| committer | Jeremy Smart <jeremy3141592@gmail.com> | 2025-06-18 00:38:55 -0400 |
| commit | b3914945ae2d77770c25ed124a8450d82c8f7fe9 (patch) | |
| tree | b32400be050f376eecdb4546724fd6cea64e0051 /library/std/src/sys/process/unix/fuchsia.rs | |
| parent | a124fb3cb7291d75872934f411d81fe298379ace (diff) | |
| download | rust-b3914945ae2d77770c25ed124a8450d82c8f7fe9.tar.gz rust-b3914945ae2d77770c25ed124a8450d82c8f7fe9.zip | |
add ChildExt(::send_signal)
Diffstat (limited to 'library/std/src/sys/process/unix/fuchsia.rs')
| -rw-r--r-- | library/std/src/sys/process/unix/fuchsia.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/library/std/src/sys/process/unix/fuchsia.rs b/library/std/src/sys/process/unix/fuchsia.rs index 017ab91797c..d71be510b6a 100644 --- a/library/std/src/sys/process/unix/fuchsia.rs +++ b/library/std/src/sys/process/unix/fuchsia.rs @@ -152,6 +152,11 @@ impl Process { Ok(()) } + pub fn send_signal(&self, _signal: i32) -> io::Result<()> { + // Fuchsia doesn't have a direct equivalent for signals + unimplemented!() + } + pub fn wait(&mut self) -> io::Result<ExitStatus> { let mut proc_info: zx_info_process_t = Default::default(); let mut actual: size_t = 0; |
