Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce pipe-based inter-thread messaging #154

Merged
merged 12 commits into from Feb 17, 2015

Conversation

kazuho
Copy link
Member

@kazuho kazuho commented Feb 16, 2015

At the moment H2O uses signals for notifying other threads, however it cannot be used for general purpose (e.g. sharing a prefixed number of connections upstream, or using a dedicated thread for communicating with memcached (#120)), as it has TOCTOU issues.

There are two options to fix the problem, one is to use platform-dependent features like signalfd to integrate signal handling with poll-based event loop; the other is to switch to pipe based messaging.

This PR uses the latter approach (which can be optimized in case of linux by using eventfd).

kazuho added a commit that referenced this pull request Feb 17, 2015
Introduce pipe-based inter-thread messaging
@kazuho kazuho merged commit 860546a into master Feb 17, 2015
kazuho added a commit that referenced this pull request Feb 18, 2015
The pipe-based IPC initializes all the pipes on the main thread.
However, since h2o_socket_t::input is initialized with reference
to h2o_socket_buffer_prototype which is a TLS value, race condition
bug (leading to random crash) arise once the pipes are used within
the worker threads.

The PR fixes the issue by moving the initialization code to each
thread.
kazuho added a commit that referenced this pull request Feb 18, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant