netty5/transport-native-epoll
Norman Maurer 3019f6db55 [#2361] Native.epollCreate(...) fails on systems using a kernel < 2.6.27 / glibc < 2.9
Motivation:
Native.epollCreate(...) fails on systems using a kernel < 2.6.27 / glibc < 2.9 because it uses epoll_create1(...) without checking if it is present

Modifications:
Check if epoll_create1(...) exists abd if not fall back to use epoll_create(...)

Result:
Works even on systems with kernel < 2.6.27 / glibc < 2.9
2014-04-04 07:56:11 +02:00
..
src [#2361] Native.epollCreate(...) fails on systems using a kernel < 2.6.27 / glibc < 2.9 2014-04-04 07:56:11 +02:00
pom.xml Introduce a native transport for linux using epoll ET 2014-02-15 22:42:07 +01:00
README.md Introduce a native transport for linux using epoll ET 2014-02-15 22:42:07 +01:00

Native transport for Linux

See our wiki page.