#epoll #poll #wepoll #windows

sys wepoll-sys-stjepang

A fork of wepoll-sys with stjepang's patches

9 stable releases

1.0.8 Sep 14, 2020
1.0.6 Jun 22, 2020
1.0.2 Jun 21, 2020

#118 in Windows APIs

Download history 700/week @ 2023-11-30 974/week @ 2023-12-07 1104/week @ 2023-12-14 796/week @ 2023-12-21 440/week @ 2023-12-28 645/week @ 2024-01-04 882/week @ 2024-01-11 891/week @ 2024-01-18 761/week @ 2024-01-25 565/week @ 2024-02-01 1011/week @ 2024-02-08 1386/week @ 2024-02-15 1060/week @ 2024-02-22 1016/week @ 2024-02-29 1570/week @ 2024-03-07 879/week @ 2024-03-14

4,737 downloads per month

MPL-2.0 license

84KB
2K SLoC

C 1.5K SLoC // 0.1% comments Rust 337 SLoC Ruby 26 SLoC // 0.1% comments

wepoll-sys-stjepang (a fork of wepoll-sys)

wepoll-sys-stjepang provides Rust bindings to wepoll, generated using bindgen. The wepoll library is included in this crate and compiled automatically, removing the need for manually installing it.

Requirements

  • Rust 2018
  • Windows
  • clang
  • A compiler such as gcc, the MSVC compiler (cl.exe), etc

Usage

Add wepoll-sys-stjepang as a Windows dependency (since it won't build on other platforms):

[dependencies.'cfg(windows)'.dependencies]
wepoll-sys-stjepang = "1.0"

Since this crate just provides a generated wrapper around the wepoll library, usage is the same as with the C code. For example:

use wepoll_sys_stjepang;

fn main() {
    let wepoll = wepoll_sys_stjepang::epoll_create(1);

    if wepoll.is_null() {
        panic!("epoll_create(1) failed!");
    }

    // ...
}

Dependencies

~0–275KB