#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

#145 in Windows APIs

Download history 1022/week @ 2024-07-27 896/week @ 2024-08-03 1029/week @ 2024-08-10 1086/week @ 2024-08-17 1418/week @ 2024-08-24 1192/week @ 2024-08-31 992/week @ 2024-09-07 1058/week @ 2024-09-14 1166/week @ 2024-09-21 1107/week @ 2024-09-28 446/week @ 2024-10-05 766/week @ 2024-10-12 783/week @ 2024-10-19 1048/week @ 2024-10-26 996/week @ 2024-11-02 281/week @ 2024-11-09

3,214 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–410KB