gaea icon indicating copy to clipboard operation
gaea copied to clipboard

Low-level library to build event driven applications, supporting lightweight non-blocking I/O.

Results 7 gaea issues
Sort by recently updated
recently updated
newest added

Expand the testing of `RegisterOption::EDGE/LEVEL | RegisterOption::ONESHOT` for all types that implement `Evented`.

This would require a number of tests, following https://github.com/tokio-rs/mio/pull/933, https://github.com/tokio-rs/mio/pull/939 and the discussion in mio: https://github.com/tokio-rs/mio/issues/941.

Some of the use of unsafe code is incorrect I think. For example the use of `mem::uninitialized` should be replaced with `mem::MaybeUninit` (currently unstable).

bug

Write benchmarks for the following: - [ ] Duplicated kqueue file descriptor vs. none-duplicated, see pr #45. - [ ] Timer space event structure, see issue #2. - [ ]...

enhancement
performance

From the manual for setsockopt: ``` SO_KEEPALIVE enables keep connections alive SO_LINGER linger on close if data present SO_OOBINLINE enables reception of out-of-band data in band SO_SNDBUF set buffer size...

enhancement

From the paper: "Hashed and Hierarchical Timing Wheels: Efficient Data Structures for Implementing a Timer Facility" by George Varghese and Anthony Lauck.

enhancement
performance