#epoll #wepoll #poll #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

#120 in Windows APIs

Download history 1032/week @ 2023-12-18 593/week @ 2023-12-25 373/week @ 2024-01-01 826/week @ 2024-01-08 877/week @ 2024-01-15 782/week @ 2024-01-22 692/week @ 2024-01-29 795/week @ 2024-02-05 1275/week @ 2024-02-12 1154/week @ 2024-02-19 992/week @ 2024-02-26 1198/week @ 2024-03-04 1349/week @ 2024-03-11 1455/week @ 2024-03-18 1140/week @ 2024-03-25 1602/week @ 2024-04-01

5,717 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–280KB