This commit is contained in:
notgull 2022-12-31 17:30:51 -08:00
parent 46ec822896
commit e358fb6e43
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ processes. This is unlike the `process` API in the standard library, where dropp
`Child` leaks its resources.
However, note that you can reap zombie processes without spawning the "async-process" thread
by calling the `cleanup_zombies` method. The "async-process" method is therefore only spawned
by calling the `cleanup_zombies` method. The "async-process" thread is therefore only spawned
if no other thread calls `cleanup_zombies`.
This crate uses [`async-io`] for async I/O on Unix-like systems and [`blocking`] for async I/O

View File

@ -10,7 +10,7 @@
//! `Child` leaks its resources.
//!
//! However, note that you can reap zombie processes without spawning the "async-process" thread
//! by calling the [`cleanup_zombies`] method. The "async-process" method is therefore only spawned
//! by calling the [`cleanup_zombies`] method. The "async-process" thread is therefore only spawned
//! if no other thread calls [`cleanup_zombies`].
//!
//! This crate uses [`async-io`] for async I/O on Unix-like systems and [`blocking`] for async I/O