Go to file
Norman Maurer f984870ccc [#5104] Fix possible deadlock in DefaultChannelPipeline
Motivation:

When a user has multiple EventLoops in an EventLoopGroup and calls pipeline.add* / remove* / replace from an EventLoop that belongs to another Channel it is possible to deadlock if the other EventLoop does the same.

Modification:

- Only ensure the actual modification takes place in a synchronized block and not wait until the handlerAdded(...) / handlerRemoved(...) method is called. This is ok as we submit the task to the executor while still holding the look and so ensure correct order of pipeline modifications.
- Ensure if an AbstractChannelHandlerContext is put in the linked-list structure but the handlerAdded(...) method was not called we skip it until handlerAdded(...) was called. This is needed to ensure handlerAdded(...) is always called first.

Result:

Its not possible to deadlock when modify the DefaultChannelPipeline.
2016-05-17 14:31:14 +02:00
all
buffer [#5227] Fix race-condition in PooledByteBufAllocatorTest 2016-05-13 08:54:46 +02:00
codec
codec-haproxy
codec-http
codec-socks
common Add DomainNameMapping.entries to allow retrieving the domain match lists 2016-05-17 09:47:57 +02:00
example
handler Allow to extend IdleStateHandler and so provide more details for IdleStateEvents 2016-05-14 07:19:39 +02:00
license
microbench
tarball
testsuite
testsuite-osgi
transport [#5104] Fix possible deadlock in DefaultChannelPipeline 2016-05-17 14:31:14 +02:00
transport-native-epoll EpollEventLoop ensures that all submitted tasks are executed immediately. 2016-05-17 07:44:00 +02:00
transport-rxtx
transport-sctp
transport-udt
.fbprefs
.gitignore
.travis.yml
CONTRIBUTING.md
LICENSE.txt
NOTICE.txt
pom.xml Upgrade to netty-tcnative-1.1.33.Fork16 2016-05-13 08:40:49 +02:00
README.md
run-example.sh

Netty Project

Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients.

How to build

For the detailed information about building and developing Netty, please visit the developer guide. This page only gives very basic information.

You require the following to build Netty:

Note that this is build-time requirement. JDK 5 (for 3.x) or 6 (for 4.0+) is enough to run your Netty-based application.

Branches to look

Development of all versions takes place in each branch whose name is identical to <majorVersion>.<minorVersion>. For example, the development of 3.9 and 4.0 resides in the branch '3.9' and the branch '4.0' respectively.