Skip to main content

libdd_common/unix_utils/
mod.rs

1// Copyright 2025-Present Datadog, Inc. https://www.datadoghq.com/
2// SPDX-License-Identifier: Apache-2.0
3
4#![cfg(unix)]
5
6mod execve;
7mod file_ops;
8mod fork;
9mod process;
10
11pub use execve::{PreparedExecve, PreparedExecveError};
12pub use file_ops::open_file_or_quiet;
13pub use fork::alt_fork;
14pub use process::wait_for_pollhup;
15pub use process::{reap_child_non_blocking, terminate, PollError, ReapError};