mirror of
https://github.com/openai/codex.git
synced 2026-09-06 15:29:32 +00:00
15 lines
318 B
Rust
15 lines
318 B
Rust
//! Codex-specific process spawning helpers.
|
|
//!
|
|
//! Spawned children must be explicitly joined before their managed handle is
|
|
//! dropped. Debug builds enforce this with a drop bomb, while release builds
|
|
//! log an error.
|
|
|
|
mod command_ext;
|
|
mod drop_bomb;
|
|
|
|
pub mod sync;
|
|
pub mod tokio;
|
|
|
|
#[cfg(test)]
|
|
mod test_support;
|