diff options
| author | The 8472 <git@infinite-source.de> | 2024-04-18 01:51:06 +0200 |
|---|---|---|
| committer | The 8472 <git@infinite-source.de> | 2024-06-22 00:46:55 +0200 |
| commit | 0787c7308cb0c0990a7e291b8e2a2ebb003069b5 (patch) | |
| tree | 8593dbacc347668e328e4e9ce68cce03aaad27e4 /library/std/src/sys/pal/unix/mod.rs | |
| parent | 894f7a4ba6554d3797404bbf550d9919df060b97 (diff) | |
| download | rust-0787c7308cb0c0990a7e291b8e2a2ebb003069b5.tar.gz rust-0787c7308cb0c0990a7e291b8e2a2ebb003069b5.zip | |
Add PidFd::{kill, wait, try_wait}
Diffstat (limited to 'library/std/src/sys/pal/unix/mod.rs')
| -rw-r--r-- | library/std/src/sys/pal/unix/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/std/src/sys/pal/unix/mod.rs b/library/std/src/sys/pal/unix/mod.rs index 735ed96bc7b..b370f06e92b 100644 --- a/library/std/src/sys/pal/unix/mod.rs +++ b/library/std/src/sys/pal/unix/mod.rs @@ -20,6 +20,8 @@ pub mod io; pub mod kernel_copy; #[cfg(target_os = "l4re")] mod l4re; +#[cfg(target_os = "linux")] +pub mod linux; #[cfg(not(target_os = "l4re"))] pub mod net; #[cfg(target_os = "l4re")] |
