Docs.rs
nix-0.23.2
nix 0.23.2
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
carllerche
github:nix-rust:nix-maintainers
Dependencies
bitflags ^1.1
normal
cfg-if ^1.0
normal
libc ^0.2.121
normal
assert-impl ^0.1
dev
lazy_static ^1.2
dev
parking_lot ^0.11.2
dev
rand ^0.8
dev
semver ^1.0.0
dev
tempfile ^3.2.0
dev
caps ^0.5.1
dev
memoffset ^0.6.3
normal
cc ^1
build
sysctl ^0.1
dev
Versions
100%
of the crate is documented
Go to latest version
Platform
aarch64-apple-ios
aarch64-linux-android
x86_64-apple-darwin
x86_64-fuchsia
x86_64-unknown-freebsd
x86_64-unknown-illumos
x86_64-unknown-linux-gnu
x86_64-unknown-netbsd
x86_64-unknown-redox
Feature flags
Rust
About docs.rs
Privacy policy
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
☰
Module poll
Structs
Functions
?
Module
nix
::
poll
source
·
[
−
]
Expand description
Wait for events to trigger on specific file descriptors
Structs
PollFd
This is a wrapper around
libc::pollfd
.
PollFlags
These flags define the different events that can be monitored by
poll
and
ppoll
Functions
poll
poll
waits for one of a set of file descriptors to become ready to perform I/O. (
poll(2)
)
ppoll
ppoll()
allows an application to safely wait until either a file descriptor becomes ready or until a signal is caught. (
poll(2)
)