summaryrefslogtreecommitdiff
path: root/src/sys/inotify.rs
AgeCommit message (Collapse)Author
2023-02-19inotify: Add AsFd to allow using with epoll (issue #1998)Arvid Norlander
2022-12-09feat: I/O safety for 'sys/inotify'Steve Lau
2022-11-06Reformat everythingAlex Saveau
Signed-off-by: Alex Saveau <saveau.alexandre@gmail.com>
2022-01-31Document inotify.rsRyan Zoeller
2021-12-20feature-gate most Nix functionsVincent Dagonneau
Using features reduces build time and size for consumer crates. By default all features are enabled.
2021-05-13Use https instead of httpRyan Zoeller
2020-06-27Prefer to pass Inotify by value instead of by referenceAlan Somers
It's small and `Copy`, so pass by value is more efficient. This is technically a breaking change, but most code should compile without changes.
2020-06-27Fix an unaligned pointer read in Inotify::read_eventsAlan Somers
Reported-by: Clippy
2020-05-31Convert the crate to edition 2018Alan Somers
2019-05-31libc::uint32_t -> rust u32Johannes Schilling
2019-02-21Added inotify bindings for Linux and Android.Vincent Dagonneau