smol-rs / async-process

Async interface for working with processes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How does this compare to Tokio's Command?

haydenflinner opened this issue · comments

https://docs.rs/tokio/latest/tokio/process/struct.Command.html

Is there a reason to use this one over Tokio's command? I landed here due to someone else having issues when receiving SIGCHLD in their process, wondering if I should be worried about the same, or if there are any advantages to switching.

Right now we use SIGCHLD just like Tokio does, although I'd like to change that. See #49, which I'd appreciate help with