netty5/transport-native-epoll
Norman Maurer 89d4c50c30 [#2926] Fix 1 byte memory leak in native transport
Motivation:

We use malloc(1) in the on JNI_OnLoad method but never free the allocated memory. This means we have a tiny memory leak of 1 byte.

Modifications:

Call free(...) on previous allocated memory.

Result:

Fix memory leak
2014-09-22 15:11:53 +02:00
..
src [#2926] Fix 1 byte memory leak in native transport 2014-09-22 15:11:53 +02:00
pom.xml Fix Native EPOLL Build Failure 2014-09-17 20:59:21 +02:00
README.md Introduce a native transport for linux using epoll ET 2014-02-15 22:44:56 +01:00

Native transport for Linux

See our wiki page.