mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 14:40:37 +00:00
23 lines
747 B
Markdown
23 lines
747 B
Markdown
# kqueue
|
|
|
|
[](https://gitlab.com/rust-kqueue/rust-kqueue/-/commits/main)
|
|
[](https://travis-ci.com/gitlab/rust-kqueue/rust-kqueue)
|
|
|
|
`kqueue(2)` library for rust
|
|
|
|
`kqueue(2)` is a powerful API in BSDs that allows you to get events based on
|
|
fs events, buffer readiness, timers, process events and signals.
|
|
|
|
This is useful for code that's either BSD-specific, or as a component in an
|
|
abstraction over similar APIs in cross-platform code.
|
|
|
|
## Docs
|
|
|
|
Docs are mirrored here: https://docs.worrbase.com/rust/kqueue/ .
|
|
|
|
## Examples
|
|
|
|
There are some basic usage examples in `examples/`.
|