aboutsummaryrefslogtreecommitdiff
path: root/vendor/rustix/src/process/mod.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/rustix/src/process/mod.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/rustix/src/process/mod.rs')
-rw-r--r--vendor/rustix/src/process/mod.rs80
1 files changed, 0 insertions, 80 deletions
diff --git a/vendor/rustix/src/process/mod.rs b/vendor/rustix/src/process/mod.rs
deleted file mode 100644
index 5fbc1f3..0000000
--- a/vendor/rustix/src/process/mod.rs
+++ /dev/null
@@ -1,80 +0,0 @@
-//! Process-associated operations.
-
-#[cfg(not(target_os = "wasi"))]
-mod chdir;
-#[cfg(not(any(target_os = "fuchsia", target_os = "wasi")))]
-mod chroot;
-mod exit;
-#[cfg(not(target_os = "wasi"))] // WASI doesn't have get[gpu]id.
-mod id;
-#[cfg(not(any(target_os = "aix", target_os = "espidf", target_os = "vita")))]
-mod ioctl;
-#[cfg(not(any(target_os = "espidf", target_os = "wasi")))]
-mod kill;
-#[cfg(linux_kernel)]
-mod membarrier;
-#[cfg(target_os = "linux")]
-mod pidfd;
-#[cfg(target_os = "linux")]
-mod pidfd_getfd;
-#[cfg(linux_kernel)]
-mod prctl;
-#[cfg(not(any(target_os = "fuchsia", target_os = "vita", target_os = "wasi")))]
-// WASI doesn't have [gs]etpriority.
-mod priority;
-#[cfg(freebsdlike)]
-mod procctl;
-#[cfg(not(any(
- target_os = "espidf",
- target_os = "fuchsia",
- target_os = "redox",
- target_os = "vita",
- target_os = "wasi"
-)))]
-mod rlimit;
-#[cfg(any(freebsdlike, linux_kernel, target_os = "fuchsia"))]
-mod sched;
-mod sched_yield;
-#[cfg(not(target_os = "wasi"))] // WASI doesn't have umask.
-mod umask;
-#[cfg(not(any(target_os = "espidf", target_os = "vita", target_os = "wasi")))]
-mod wait;
-
-#[cfg(not(target_os = "wasi"))]
-pub use chdir::*;
-#[cfg(not(any(target_os = "fuchsia", target_os = "wasi")))]
-pub use chroot::*;
-pub use exit::*;
-#[cfg(not(target_os = "wasi"))]
-pub use id::*;
-#[cfg(not(any(target_os = "aix", target_os = "espidf", target_os = "vita")))]
-pub use ioctl::*;
-#[cfg(not(any(target_os = "espidf", target_os = "wasi")))]
-pub use kill::*;
-#[cfg(linux_kernel)]
-pub use membarrier::*;
-#[cfg(target_os = "linux")]
-pub use pidfd::*;
-#[cfg(target_os = "linux")]
-pub use pidfd_getfd::*;
-#[cfg(linux_kernel)]
-pub use prctl::*;
-#[cfg(not(any(target_os = "fuchsia", target_os = "vita", target_os = "wasi")))]
-pub use priority::*;
-#[cfg(freebsdlike)]
-pub use procctl::*;
-#[cfg(not(any(
- target_os = "espidf",
- target_os = "fuchsia",
- target_os = "redox",
- target_os = "vita",
- target_os = "wasi"
-)))]
-pub use rlimit::*;
-#[cfg(any(freebsdlike, linux_kernel, target_os = "fuchsia"))]
-pub use sched::*;
-pub use sched_yield::sched_yield;
-#[cfg(not(target_os = "wasi"))]
-pub use umask::*;
-#[cfg(not(any(target_os = "espidf", target_os = "vita", target_os = "wasi")))]
-pub use wait::*;