52 lines
1.3 KiB
Rust
52 lines
1.3 KiB
Rust
//! `sys/wait.h` implementation.
|
|
//!
|
|
//! See <https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/sys_wait.h.html>.
|
|
|
|
use crate::{
|
|
error::ResultExt,
|
|
out::Out,
|
|
platform::{
|
|
Pal, Sys,
|
|
types::{c_int, pid_t},
|
|
},
|
|
};
|
|
|
|
pub const WNOHANG: c_int = 1;
|
|
pub const WUNTRACED: c_int = 2;
|
|
|
|
pub const WSTOPPED: c_int = 2;
|
|
pub const WEXITED: c_int = 4;
|
|
pub const WCONTINUED: c_int = 8;
|
|
pub const WNOWAIT: c_int = 0x0100_0000;
|
|
|
|
pub const __WNOTHREAD: c_int = 0x2000_0000;
|
|
pub const __WALL: c_int = 0x4000_0000;
|
|
#[allow(overflowing_literals)]
|
|
pub const __WCLONE: c_int = 0x8000_0000;
|
|
|
|
/// See <https://pubs.opengroup.org/onlinepubs/9799919799/functions/wait.html>.
|
|
#[unsafe(no_mangle)]
|
|
pub unsafe extern "C" fn wait(stat_loc: *mut c_int) -> pid_t {
|
|
unsafe { waitpid(!0, stat_loc, 0) }
|
|
}
|
|
|
|
/*
|
|
* TODO: implement idtype_t, id_t, and siginfo_t
|
|
*
|
|
* #[unsafe(no_mangle)]
|
|
* pub unsafe extern "C" fn waitid(
|
|
* idtype: idtype_t,
|
|
* id: id_t,
|
|
* infop: siginfo_t,
|
|
* options: c_int
|
|
* ) -> c_int {
|
|
* unimplemented!();
|
|
* }
|
|
*/
|
|
|
|
/// See <https://pubs.opengroup.org/onlinepubs/9799919799/functions/waitpid.html>.
|
|
#[unsafe(no_mangle)]
|
|
pub unsafe extern "C" fn waitpid(pid: pid_t, stat_loc: *mut c_int, options: c_int) -> pid_t {
|
|
Sys::waitpid(pid, unsafe { Out::nullable(stat_loc) }, options).or_minus_one_errno()
|
|
}
|